WebSocket++
0.8.2
C++ websocket client/server library
|
28 #ifndef WEBSOCKETPP_CLIENT_ENDPOINT_HPP
29 #define WEBSOCKETPP_CLIENT_ENDPOINT_HPP
31 #include <websocketpp/endpoint.hpp>
32 #include <websocketpp/uri.hpp>
34 #include <websocketpp/logger/levels.hpp>
36 #include <websocketpp/common/system_error.hpp>
46 template <
typename config>
74 endpoint_type::m_alog->write(log::alevel::devel,
"client constructor");
90 if (location->get_secure() && !transport_type::is_secure()) {
91 ec = error::make_error_code(error::endpoint_not_secure);
98 ec = error::make_error_code(error::con_creation_failed);
102 con->set_uri(location);
104 ec = lib::error_code();
120 uri_ptr location = lib::make_shared<uri>(u);
122 if (!location->get_valid()) {
123 ec = error::make_error_code(error::invalid_uri);
127 return get_connection(location, ec);
141 transport_type::async_connect(
142 lib::static_pointer_cast<transport_con_type>(con),
145 &type::handle_connect,
148 lib::placeholders::_1
156 void handle_connect(
connection_ptr con, lib::error_code
const & ec) {
160 endpoint_type::m_elog->write(log::elevel::rerror,
161 "handle_connect error: "+ec.message());
163 endpoint_type::m_alog->write(log::alevel::connect,
164 "Successful connection");
Client endpoint role based on the given config.
transport_type::transport_con_type transport_con_type
Type of the connection transport component.
client< config > type
Type of this endpoint.
config::concurrency_type concurrency_type
Type of the endpoint concurrency component.
Represents an individual WebSocket connection.
connection< config > connection_type
Type of the connections this server will create.
config::transport_type transport_type
Type of the endpoint transport component.
static std::vector< int > const versions_supported(helper, helper+4)
Container that stores the list of protocol versions supported.
transport_con_type::ptr transport_con_ptr
Type of a shared pointer to the connection transport component.
connection_type::ptr connection_ptr
Type of a shared pointer to the connections this server will create.
connection_ptr get_connection(std::string const &u, lib::error_code &ec)
Get a new connection (string version)
connection_ptr connect(connection_ptr con)
Begin the connection process for the given connection.
endpoint< connection_type, config > endpoint_type
Type of the endpoint component of this server.
connection_ptr get_connection(uri_ptr location, lib::error_code &ec)
Get a new connection.
Creates and manages connections associated with a WebSocket endpoint.