Client/Server debug config with iostream transport.
More...
#include <debug.hpp>
Client/Server debug config with iostream transport.
Definition at line 68 of file debug.hpp.
◆ alog_level
const websocketpp::log::level websocketpp::config::debug_core::alog_level |
|
static |
Initial value:
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 189 of file debug.hpp.
◆ client_version
const int websocketpp::config::debug_core::client_version = 13 |
|
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 164 of file debug.hpp.
◆ drop_on_protocol_error
const bool websocketpp::config::debug_core::drop_on_protocol_error = false |
|
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 202 of file debug.hpp.
◆ elog_level
const websocketpp::log::level websocketpp::config::debug_core::elog_level |
|
static |
Initial value:
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 176 of file debug.hpp.
◆ enable_multithreading
bool const websocketpp::config::debug_core::enable_multithreading = true |
|
static |
Controls compile time enabling/disabling of thread syncronization code Disabling can provide a minor performance improvement to single threaded applications
Definition at line 98 of file debug.hpp.
◆ max_http_body_size
const size_t websocketpp::config::debug_core::max_http_body_size = 32000000 |
|
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
- Since
- 0.5.0
Definition at line 241 of file debug.hpp.
◆ max_message_size
const size_t websocketpp::config::debug_core::max_message_size = 32000000 |
|
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
- Since
- 0.3.0
Definition at line 229 of file debug.hpp.
◆ silent_close
const bool websocketpp::config::debug_core::silent_close = false |
|
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 217 of file debug.hpp.
◆ timeout_open_handshake
const long websocketpp::config::debug_core::timeout_open_handshake = 5000 |
|
static |
Default timer values (in ms)
Length of time before an opening handshake is aborted
Definition at line 152 of file debug.hpp.
The documentation for this struct was generated from the following file: