28 #ifndef WEBSOCKETPP_TRANSPORT_ASIO_SOCKET_BASE_HPP
29 #define WEBSOCKETPP_TRANSPORT_ASIO_SOCKET_BASE_HPP
31 #include <websocketpp/common/memory.hpp>
32 #include <websocketpp/common/functional.hpp>
33 #include <websocketpp/common/system_error.hpp>
34 #include <websocketpp/common/cpp11.hpp>
35 #include <websocketpp/common/connection_hdl.hpp>
109 char const * name()
const _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
110 return "websocketpp.transport.asio.socket";
113 std::string message(
int value)
const {
116 return "Security policy error";
118 return "Socket component error";
120 return "Invalid state";
122 return "Invalid or empty TLS context supplied";
124 return "TLS handshake timed out";
126 return "Pass through from socket policy";
128 return "Required tls_init handler not present.";
130 return "TLS handshake failed";
132 return "Failed to set TLS SNI hostname";
139 inline lib::error_category
const & get_socket_category() {
144 inline lib::error_code make_error_code(
error::value e) {
145 return lib::error_code(static_cast<int>(e), get_socket_category());
149 typedef lib::function<void(const lib::error_code&)>
init_handler;
156 #endif // WEBSOCKETPP_TRANSPORT_ASIO_SOCKET_BASE_HPP
uint16_t value
The type of a close code value.
Error category related to asio transport socket policies.
Required tls_init handler not present.
pass_through from underlying library
A function was called in a state that it was illegal to do so.
Namespace for the WebSocket++ project.
lib::function< void(lib::error_code const &)> init_handler
The type and signature of the callback passed to the init hook.
Failed to set TLS SNI hostname.