Client config with iostream transport. More...
#include <core_client.hpp>
Classes | |
struct | permessage_deflate_config |
Extension specific settings: More... | |
struct | transport_config |
Static Public Attributes | |
static bool const | enable_multithreading = true |
Controls compile time enabling/disabling of thread syncronization code Disabling can provide a minor performance improvement to single threaded applications. More... | |
static const long | timeout_open_handshake = 5000 |
Default timer values (in ms) More... | |
static const long | timeout_close_handshake = 5000 |
Length of time before a closing handshake is aborted. More... | |
static const long | timeout_pong = 5000 |
Length of time to wait for a pong after a ping. More... | |
static const int | client_version = 13 |
WebSocket Protocol version to use as a client. More... | |
static const websocketpp::log::level | elog_level |
Default static error logging channels. More... | |
static const websocketpp::log::level | alog_level |
Default static access logging channels. More... | |
static const size_t | connection_read_buffer_size = 16384 |
static const bool | drop_on_protocol_error = false |
Drop connections immediately on protocol error. More... | |
static const bool | silent_close = false |
Suppresses the return of detailed connection close information. More... | |
static const size_t | max_message_size = 32000000 |
Default maximum message size. More... | |
static const size_t | max_http_body_size = 32000000 |
Default maximum http body size. More... | |
static const bool | enable_extensions = true |
Global flag for enabling/disabling extensions. More... | |
Client config with iostream transport.
Definition at line 71 of file core_client.hpp.
Definition at line 72 of file core_client.hpp.
Definition at line 76 of file core_client.hpp.
Definition at line 82 of file core_client.hpp.
Definition at line 83 of file core_client.hpp.
typedef message_buffer::message<message_buffer::alloc::con_msg_manager> websocketpp::config::core_client::message_type |
Definition at line 87 of file core_client.hpp.
typedef message_buffer::alloc::con_msg_manager<message_type> websocketpp::config::core_client::con_msg_manager_type |
Definition at line 89 of file core_client.hpp.
typedef message_buffer::alloc::endpoint_msg_manager<con_msg_manager_type> websocketpp::config::core_client::endpoint_msg_manager_type |
Definition at line 91 of file core_client.hpp.
typedef websocketpp::log::basic<concurrency_type, websocketpp::log::elevel> websocketpp::config::core_client::elog_type |
Logging policies.
Definition at line 95 of file core_client.hpp.
typedef websocketpp::log::basic<concurrency_type, websocketpp::log::alevel> websocketpp::config::core_client::alog_type |
Definition at line 97 of file core_client.hpp.
typedef websocketpp::random::random_device::int_generator<uint32_t, concurrency_type> websocketpp::config::core_client::rng_type |
RNG policies.
Definition at line 101 of file core_client.hpp.
typedef websocketpp::transport::iostream::endpoint<transport_config> websocketpp::config::core_client::transport_type |
Transport Endpoint Component.
Definition at line 150 of file core_client.hpp.
User overridable Endpoint base class.
Definition at line 153 of file core_client.hpp.
User overridable Connection base class.
Definition at line 155 of file core_client.hpp.
typedef websocketpp::extensions::permessage_deflate::disabled<permessage_deflate_config> websocketpp::config::core_client::permessage_deflate_type |
Definition at line 273 of file core_client.hpp.
|
static |
Controls compile time enabling/disabling of thread syncronization code Disabling can provide a minor performance improvement to single threaded applications.
Definition at line 106 of file core_client.hpp.
|
static |
Default timer values (in ms)
Length of time before an opening handshake is aborted
Definition at line 160 of file core_client.hpp.
|
static |
Length of time before a closing handshake is aborted.
Definition at line 162 of file core_client.hpp.
|
static |
Length of time to wait for a pong after a ping.
Definition at line 164 of file core_client.hpp.
|
static |
WebSocket Protocol version to use as a client.
What version of the WebSocket Protocol to use for outgoing client connections. Setting this to a value other than 13 (RFC6455) is not recommended.
Definition at line 172 of file core_client.hpp.
Referenced by websocketpp::connection< stub_config >::handle_transport_init().
|
static |
Default static error logging channels.
Which error logging channels to enable at compile time. Channels not enabled here will be unable to be selected by programs using the library. This option gives an optimizing compiler the ability to remove entirely code to test whether or not to print out log messages on a certain channel
Default is all except for development/debug level errors
Definition at line 184 of file core_client.hpp.
Referenced by websocketpp::endpoint< connection< websocketpp::config::asio >, websocketpp::config::asio >::endpoint().
|
static |
Default static access logging channels.
Which access logging channels to enable at compile time. Channels not enabled here will be unable to be selected by programs using the library. This option gives an optimizing compiler the ability to remove entirely code to test whether or not to print out log messages on a certain channel
Default is all except for development/debug level access messages
Definition at line 197 of file core_client.hpp.
Referenced by websocketpp::endpoint< connection< websocketpp::config::asio >, websocketpp::config::asio >::endpoint().
|
static |
Definition at line 201 of file core_client.hpp.
Referenced by websocketpp::connection< stub_config >::handle_read_handshake(), websocketpp::connection< stub_config >::handle_read_http_response(), websocketpp::connection< stub_config >::handle_send_http_request(), websocketpp::connection< stub_config >::read_frame(), websocketpp::connection< stub_config >::read_handshake(), and websocketpp::connection< stub_config >::set_handle().
|
static |
Drop connections immediately on protocol error.
Drop connections on protocol error rather than sending a close frame. Off by default. This may result in legit messages near the error being dropped as well. It may free up resources otherwise spent dealing with misbehaving clients.
Definition at line 210 of file core_client.hpp.
Referenced by websocketpp::connection< stub_config >::get_supported_versions(), and websocketpp::connection< stub_config >::handle_read_frame().
|
static |
Suppresses the return of detailed connection close information.
Silence close suppresses the return of detailed connection close information during the closing handshake. This information is useful for debugging and presenting useful errors to end users but may be undesirable for security reasons in some production environments. Close reasons could be used by an attacker to confirm that the endpoint is out of resources or be used to identify the WebSocket implementation in use.
Note: this will suppress all close codes, including those explicitly sent by local applications.
Definition at line 225 of file core_client.hpp.
Referenced by websocketpp::connection< stub_config >::get_supported_versions().
|
static |
Default maximum message size.
Default value for the processor's maximum message size. Maximum message size determines the point at which the library will fail a connection with the message_too_big protocol error.
The default is 32MB
Definition at line 237 of file core_client.hpp.
Referenced by websocketpp::endpoint< connection< websocketpp::config::asio >, websocketpp::config::asio >::create_connection().
|
static |
Default maximum http body size.
Default value for the http parser's maximum body size. Maximum body size determines the point at which the library will abort reading an HTTP connection with the 413/request entity too large error.
The default is 32MB
Definition at line 249 of file core_client.hpp.
|
static |
Global flag for enabling/disabling extensions.
Definition at line 252 of file core_client.hpp.
Referenced by websocketpp::processor::hybi13< stub_config >::negotiate_extensions_helper().