|
WebSocket++ 0.8.3-dev
C++ websocket client/server library
|
Asio based endpoint transport component. More...
#include <endpoint.hpp>
Public Types | |
| typedef endpoint< config > | type |
| Type of this endpoint transport component. | |
| typedef config::concurrency_type | concurrency_type |
| Type of the concurrency policy. | |
| typedef config::socket_type | socket_type |
| Type of the socket policy. | |
| typedef config::elog_type | elog_type |
| Type of the error logging policy. | |
| typedef config::alog_type | alog_type |
| Type of the access logging policy. | |
| typedef socket_type::socket_con_type | socket_con_type |
| Type of the socket connection component. | |
| typedef socket_con_type::ptr | socket_con_ptr |
| Type of a shared pointer to the socket connection component. | |
| typedef asio::connection< config > | transport_con_type |
| typedef transport_con_type::ptr | transport_con_ptr |
| typedef lib::asio::io_context * | io_context_ptr |
| Type of a pointer to the ASIO io_context being used. | |
| typedef lib::shared_ptr< lib::asio::ip::tcp::acceptor > | acceptor_ptr |
| Type of a shared pointer to the acceptor being used. | |
| typedef lib::shared_ptr< lib::asio::ip::tcp::resolver > | resolver_ptr |
| Type of a shared pointer to the resolver being used. | |
| typedef lib::shared_ptr< lib::asio::steady_timer > | timer_ptr |
| Type of timer handle. | |
| typedef lib::shared_ptr< lib::asio::executor_work_guard< lib::asio::io_context::executor_type > > | work_guard_ptr |
| Type of a shared pointer to an io_context work object. | |
| typedef lib::function< lib::error_code(acceptor_ptr)> | tcp_pre_bind_handler |
| Type of socket pre-bind handler. | |
Public Member Functions | |
| bool | is_secure () const |
| Return whether or not the endpoint produces secure connections. | |
| void | init_asio (io_context_ptr ptr, lib::error_code &ec) |
| initialize asio transport with external io_context (exception free) | |
| void | init_asio (io_context_ptr ptr) |
| initialize asio transport with external io_context | |
| void | init_asio (lib::error_code &ec) |
| Initialize asio transport with internal io_context (exception free). | |
| void | init_asio () |
| Initialize asio transport with internal io_context. | |
| void | set_tcp_pre_bind_handler (tcp_pre_bind_handler h) |
| Sets the tcp pre bind handler. | |
| void | set_tcp_pre_init_handler (tcp_init_handler h) |
| Sets the tcp pre init handler. | |
| void | set_tcp_init_handler (tcp_init_handler h) |
| Sets the tcp pre init handler (deprecated). | |
| void | set_tcp_post_init_handler (tcp_init_handler h) |
| Sets the tcp post init handler. | |
| void | set_listen_backlog (int backlog) |
| Sets the maximum length of the queue of pending connections. | |
| void | set_reuse_addr (bool value) |
| Sets whether to use the SO_REUSEADDR flag when opening listening sockets. | |
| lib::asio::io_context & | get_io_context () |
| Retrieve a reference to the endpoint's io_context. | |
| lib::asio::ip::tcp::endpoint | get_local_endpoint (lib::asio::error_code &ec) |
| Get local TCP endpoint. | |
| void | listen (lib::asio::ip::tcp::endpoint const &ep, lib::error_code &ec) |
| Set up endpoint for listening manually (exception free). | |
| template<typename InternetProtocol> | |
| void | listen (InternetProtocol const &internet_protocol, uint16_t port, lib::error_code &ec) |
| Set up endpoint for listening with protocol and port (exception free). | |
| void | listen (uint16_t port, lib::error_code &ec) |
| Set up endpoint for listening on a port (exception free). | |
| void | listen (std::string const &host, std::string const &service, lib::error_code &ec) |
| Set up endpoint for listening on a host and service (exception free). | |
| void | stop_listening (lib::error_code &ec) |
| Stop listening (exception free). | |
| void | listen (lib::asio::ip::tcp::endpoint const &ep) |
| Set up endpoint for listening manually. | |
| template<typename InternetProtocol> | |
| void | listen (InternetProtocol const &internet_protocol, uint16_t port) |
| Set up endpoint for listening with protocol and port. | |
| void | listen (uint16_t port) |
| Set up endpoint for listening on a port. | |
| void | listen (std::string const &host, std::string const &service) |
| Set up endpoint for listening on a host and service. | |
| void | stop_listening () |
| Stop listening. | |
| bool | is_listening () const |
| Check if the endpoint is listening. | |
| std::size_t | run () |
| wraps the run method of the internal io_context object | |
| std::size_t | run_one () |
| wraps the run_one method of the internal io_context object | |
| void | stop () |
| wraps the stop method of the internal io_context object | |
| std::size_t | poll () |
| wraps the poll method of the internal io_context object | |
| std::size_t | poll_one () |
| wraps the poll_one method of the internal io_context object | |
| void | reset () |
| wraps the restart method of the internal io_context object | |
| bool | stopped () const |
| wraps the stopped method of the internal io_context object | |
| void | start_perpetual () |
| Marks the endpoint as perpetual, stopping it from exiting when empty. | |
| void | stop_perpetual () |
| Clears the endpoint's perpetual flag, allowing it to exit when empty. | |
| timer_ptr | set_timer (long duration, timer_handler callback) |
| Call back a function after a period of time. | |
| void | handle_timer (timer_ptr, timer_handler callback, lib::asio::error_code const &ec) |
| Timer handler. | |
| void | async_accept (transport_con_ptr tcon, accept_handler callback, lib::error_code &ec) |
| Accept the next connection attempt and assign it to con (exception free). | |
| void | async_accept (transport_con_ptr tcon, accept_handler callback) |
| Accept the next connection attempt and assign it to con. | |
Protected Member Functions | |
| void | init_logging (const lib::shared_ptr< alog_type > &a, const lib::shared_ptr< elog_type > &e) |
| Initialize logging. | |
| void | handle_accept (accept_handler callback, lib::asio::error_code const &asio_ec) |
| void | async_connect (transport_con_ptr tcon, uri_ptr u, connect_handler cb) |
| Initiate a new connection. | |
| void | handle_resolve_timeout (timer_ptr, connect_handler callback, lib::error_code const &ec) |
| DNS resolution timeout handler. | |
| void | handle_resolve (transport_con_ptr tcon, timer_ptr dns_timer, connect_handler callback, lib::asio::error_code const &ec, lib::asio::ip::tcp::resolver::results_type results) |
| void | handle_connect_timeout (transport_con_ptr tcon, timer_ptr, connect_handler callback, lib::error_code const &ec) |
| Asio connect timeout handler. | |
| void | handle_connect (transport_con_ptr tcon, timer_ptr con_timer, connect_handler callback, lib::asio::error_code const &ec) |
| lib::error_code | init (transport_con_ptr tcon) |
| Initialize a connection. | |
Asio based endpoint transport component.
transport::asio::endpoint implements an endpoint transport component using Asio.
Definition at line 54 of file endpoint.hpp.
| typedef lib::shared_ptr<lib::asio::ip::tcp::acceptor> websocketpp::transport::asio::endpoint< config >::acceptor_ptr |
Type of a shared pointer to the acceptor being used.
Definition at line 83 of file endpoint.hpp.
| typedef config::alog_type websocketpp::transport::asio::endpoint< config >::alog_type |
Type of the access logging policy.
Definition at line 66 of file endpoint.hpp.
| typedef config::concurrency_type websocketpp::transport::asio::endpoint< config >::concurrency_type |
Type of the concurrency policy.
Definition at line 60 of file endpoint.hpp.
| typedef config::elog_type websocketpp::transport::asio::endpoint< config >::elog_type |
Type of the error logging policy.
Definition at line 64 of file endpoint.hpp.
| typedef lib::asio::io_context* websocketpp::transport::asio::endpoint< config >::io_context_ptr |
Type of a pointer to the ASIO io_context being used.
Definition at line 81 of file endpoint.hpp.
| typedef lib::shared_ptr<lib::asio::ip::tcp::resolver> websocketpp::transport::asio::endpoint< config >::resolver_ptr |
Type of a shared pointer to the resolver being used.
Definition at line 85 of file endpoint.hpp.
| typedef socket_con_type::ptr websocketpp::transport::asio::endpoint< config >::socket_con_ptr |
Type of a shared pointer to the socket connection component.
Definition at line 71 of file endpoint.hpp.
| typedef socket_type::socket_con_type websocketpp::transport::asio::endpoint< config >::socket_con_type |
Type of the socket connection component.
Definition at line 69 of file endpoint.hpp.
| typedef config::socket_type websocketpp::transport::asio::endpoint< config >::socket_type |
Type of the socket policy.
Definition at line 62 of file endpoint.hpp.
| typedef lib::function<lib::error_code(acceptor_ptr)> websocketpp::transport::asio::endpoint< config >::tcp_pre_bind_handler |
Type of socket pre-bind handler.
Definition at line 92 of file endpoint.hpp.
| typedef lib::shared_ptr<lib::asio::steady_timer> websocketpp::transport::asio::endpoint< config >::timer_ptr |
Type of timer handle.
Definition at line 87 of file endpoint.hpp.
| typedef transport_con_type::ptr websocketpp::transport::asio::endpoint< config >::transport_con_ptr |
Type of a shared pointer to the connection transport component associated with this endpoint transport component
Definition at line 78 of file endpoint.hpp.
| typedef asio::connection<config> websocketpp::transport::asio::endpoint< config >::transport_con_type |
Type of the connection transport component associated with this endpoint transport component
Definition at line 75 of file endpoint.hpp.
| typedef endpoint<config> websocketpp::transport::asio::endpoint< config >::type |
Type of this endpoint transport component.
Definition at line 57 of file endpoint.hpp.
| typedef lib::shared_ptr<lib::asio::executor_work_guard<lib::asio::io_context::executor_type> > websocketpp::transport::asio::endpoint< config >::work_guard_ptr |
Type of a shared pointer to an io_context work object.
Definition at line 89 of file endpoint.hpp.
|
inlineexplicit |
Definition at line 95 of file endpoint.hpp.
|
inline |
Definition at line 105 of file endpoint.hpp.
|
inline |
Accept the next connection attempt and assign it to con.
| tcon | The connection to accept into. |
| callback | The function to call when the operation is complete. |
Definition at line 831 of file endpoint.hpp.
|
inline |
Accept the next connection attempt and assign it to con (exception free).
| tcon | The connection to accept into. |
| callback | The function to call when the operation is complete. |
| ec | A status code indicating an error, if any. |
Definition at line 791 of file endpoint.hpp.
|
inlineprotected |
Initiate a new connection.
Definition at line 874 of file endpoint.hpp.
|
inline |
Retrieve a reference to the endpoint's io_context.
The io_context may be an internal or external one. This may be used to call methods of the io_context that are not explicitly wrapped by the endpoint.
This method is only valid after the endpoint has been initialized with init_asio. No error will be returned if it isn't.
Definition at line 382 of file endpoint.hpp.
|
inline |
Get local TCP endpoint.
Extracts the local endpoint from the acceptor. This represents the address that WebSocket++ is listening on.
Sets a bad_descriptor error if the acceptor is not currently listening or otherwise unavailable.
| ec | Set to indicate what error occurred, if any. |
Definition at line 399 of file endpoint.hpp.
|
inlineprotected |
Definition at line 853 of file endpoint.hpp.
|
inlineprotected |
Definition at line 1101 of file endpoint.hpp.
|
inlineprotected |
Asio connect timeout handler.
The timer pointer is included to ensure the timer isn't destroyed until after it has expired.
| tcon | Pointer to the transport connection that is being connected |
| con_timer | Pointer to the timer in question |
| callback | The function to call back |
| ec | A status code indicating an error, if any. |
Definition at line 1078 of file endpoint.hpp.
|
inlineprotected |
Definition at line 992 of file endpoint.hpp.
|
inlineprotected |
DNS resolution timeout handler.
The timer pointer is included to ensure the timer isn't destroyed until after it has expired.
| dns_timer | Pointer to the timer in question |
| callback | The function to call back |
| ec | A status code indicating an error, if any. |
Definition at line 969 of file endpoint.hpp.
|
inline |
Timer handler.
The timer pointer is included to ensure the timer isn't destroyed until after it has expired.
| t | Pointer to the timer in question |
| callback | The function to call back |
| ec | A status code indicating an error, if any. |
Definition at line 768 of file endpoint.hpp.
|
inlineprotected |
Initialize a connection.
init is called by an endpoint once for each newly created connection. It's purpose is to give the transport policy the chance to perform any transport specific initialization that couldn't be done via the default constructor.
| tcon | A pointer to the transport portion of the connection. |
Definition at line 1138 of file endpoint.hpp.
|
inline |
Initialize asio transport with internal io_context.
This method of initialization will allocate and use an internally managed io_context.
Definition at line 252 of file endpoint.hpp.
|
inline |
initialize asio transport with external io_context
Initialize the ASIO transport policy for this endpoint using the provided io_context object. asio_init must be called exactly once on any endpoint that uses transport::asio before it can be used.
| ptr | A pointer to the io_context to use for asio events |
Definition at line 213 of file endpoint.hpp.
|
inline |
initialize asio transport with external io_context (exception free)
Initialize the ASIO transport policy for this endpoint using the provided io_context object. asio_init must be called exactly once on any endpoint that uses transport::asio before it can be used.
| ptr | A pointer to the io_context to use for asio events |
| ec | Set to indicate what error occurred, if any. |
Definition at line 185 of file endpoint.hpp.
|
inline |
Initialize asio transport with internal io_context (exception free).
This method of initialization will allocate and use an internally managed io_context.
| ec | Set to indicate what error occurred, if any. |
Definition at line 229 of file endpoint.hpp.
|
inlineprotected |
Initialize logging.
The loggers are located in the main endpoint class. As such, the transport doesn't have direct access to them. This method is called by the endpoint constructor to allow shared logging from the transport component. These are raw pointers to member variables of the endpoint. In particular, they cannot be used in the transport constructor as they haven't been constructed yet, and cannot be used in the transport destructor as they will have been destroyed by then.
Definition at line 848 of file endpoint.hpp.
|
inline |
Check if the endpoint is listening.
Definition at line 658 of file endpoint.hpp.
|
inline |
Return whether or not the endpoint produces secure connections.
Definition at line 172 of file endpoint.hpp.
|
inline |
Set up endpoint for listening with protocol and port.
Bind the internal acceptor using the given internet protocol and port. The endpoint must have been initialized by calling init_asio before listening.
Common options include:
| internet_protocol | The internet protocol to use. |
| port | The port to listen on. |
Definition at line 589 of file endpoint.hpp.
|
inline |
Set up endpoint for listening with protocol and port (exception free).
Bind the internal acceptor using the given internet protocol and port. The endpoint must have been initialized by calling init_asio before listening.
Common options include:
| internet_protocol | The internet protocol to use. |
| port | The port to listen on. |
| ec | Set to indicate what error occurred, if any. |
Definition at line 471 of file endpoint.hpp.
|
inline |
Set up endpoint for listening manually.
Bind the internal acceptor using the settings specified by the endpoint e
| ep | An endpoint to read settings from |
Definition at line 569 of file endpoint.hpp.
|
inline |
Set up endpoint for listening manually (exception free).
Bind the internal acceptor using the specified settings. The endpoint must have been initialized by calling init_asio before listening.
| ep | An endpoint to read settings from |
| ec | Set to indicate what error occurred, if any. |
Definition at line 416 of file endpoint.hpp.
|
inline |
Set up endpoint for listening on a host and service.
Bind the internal acceptor using the given host and service. More details about what host and service can be are available in the Asio documentation for the ip::basic_resolver::resolve function.
The endpoint must have been initialized by calling init_asio before listening.
Once listening the underlying io_context will be kept open indefinitely. Calling endpoint::stop_listening will stop the endpoint from accepting new connections. See the documentation for stop listening for more details about shutting down Asio Transport based endpoints.
| host | A string identifying a location. May be a descriptive name or a numeric address string. |
| service | A string identifying the requested service. This may be a descriptive name or a numeric string corresponding to a port number. |
| ec | Set to indicate what error occurred, if any. |
Definition at line 633 of file endpoint.hpp.
|
inline |
Set up endpoint for listening on a host and service (exception free).
Bind the internal acceptor using the given host and service. More details about what host and service can be are available in the Asio documentation for the ip::basic_resolver::resolve function.
The endpoint must have been initialized by calling init_asio before listening.
Once listening the underlying io_context will be kept open indefinitely. Calling endpoint::stop_listening will stop the endpoint from accepting new connections. See the documentation for stop listening for more details about shutting down Asio Transport based endpoints.
| host | A string identifying a location. May be a descriptive name or a numeric address string. |
| service | A string identifying the requested service. This may be a descriptive name or a numeric string corresponding to a port number. |
| ec | Set to indicate what error occurred, if any. |
Definition at line 516 of file endpoint.hpp.
|
inline |
Set up endpoint for listening on a port.
Bind the internal acceptor using the given port. The IPv6 protocol with mapped IPv4 for dual stack hosts will be used. If you need IPv4 only use the overload that allows specifying the protocol explicitly.
The endpoint must have been initialized by calling init_asio before listening.
| port | The port to listen on. |
| ec | Set to indicate what error occurred, if any. |
Definition at line 607 of file endpoint.hpp.
|
inline |
Set up endpoint for listening on a port (exception free).
Bind the internal acceptor using the given port. The IPv6 protocol with mapped IPv4 for dual stack hosts will be used. If you need IPv4 only use the overload that allows specifying the protocol explicitly.
The endpoint must have been initialized by calling init_asio before listening.
| port | The port to listen on. |
| ec | Set to indicate what error occurred, if any. |
Definition at line 490 of file endpoint.hpp.
|
inline |
wraps the poll method of the internal io_context object
Definition at line 681 of file endpoint.hpp.
|
inline |
wraps the poll_one method of the internal io_context object
Definition at line 686 of file endpoint.hpp.
|
inline |
wraps the restart method of the internal io_context object
Definition at line 691 of file endpoint.hpp.
|
inline |
wraps the run method of the internal io_context object
Definition at line 663 of file endpoint.hpp.
|
inline |
wraps the run_one method of the internal io_context object
Definition at line 671 of file endpoint.hpp.
|
inline |
Sets the maximum length of the queue of pending connections.
Sets the maximum length of the queue of pending connections. Increasing this will allow WebSocket++ to queue additional incoming connections. Setting it higher may prevent failed connections at high connection rates but may cause additional latency.
For this value to take effect you may need to adjust operating system settings.
New values affect future calls to listen only.
The default value is specified as *::asio::socket_base::max_listen_connections which uses the operating system defined maximum queue length. Your OS may restrict or silently lower this value. A value of zero may cause all connections to be rejected.
| backlog | The maximum length of the queue of pending connections |
Definition at line 346 of file endpoint.hpp.
|
inline |
Sets whether to use the SO_REUSEADDR flag when opening listening sockets.
Specifies whether or not to use the SO_REUSEADDR TCP socket option. What this flag does depends on your operating system.
Please consult operating system documentation for more details. There may be security consequences to enabling this option.
New values affect future calls to listen only so set this value prior to calling listen.
The default is false.
| value | Whether or not to use the SO_REUSEADDR option |
Definition at line 367 of file endpoint.hpp.
|
inline |
Sets the tcp pre init handler (deprecated).
The tcp pre init handler is called after the raw tcp connection has been established but before any additional wrappers (proxy connects, TLS handshakes, etc) have been performed.
| h | The handler to call on tcp pre init. |
Definition at line 306 of file endpoint.hpp.
|
inline |
Sets the tcp post init handler.
The tcp post init handler is called after the tcp connection has been established and all additional wrappers (proxy connects, TLS handshakes, etc have been performed. This is fired before any bytes are read or any WebSocket specific handshake logic has been performed.
| h | The handler to call on tcp post init. |
Definition at line 321 of file endpoint.hpp.
|
inline |
Sets the tcp pre bind handler.
The tcp pre bind handler is called after the listen acceptor has been created but before the socket bind is performed.
| h | The handler to call on tcp pre bind init. |
Definition at line 278 of file endpoint.hpp.
|
inline |
Sets the tcp pre init handler.
The tcp pre init handler is called after the raw tcp connection has been established but before any additional wrappers (proxy connects, TLS handshakes, etc) have been performed.
| h | The handler to call on tcp pre init. |
Definition at line 292 of file endpoint.hpp.
|
inline |
Call back a function after a period of time.
Sets a timer that calls back a function after the specified period of milliseconds. Returns a handle that can be used to cancel the timer. A cancelled timer will return the error code error::operation_aborted A timer that expired will return no error.
| duration | Length of time to wait in milliseconds |
| callback | The function to call back when the timer has expired |
Definition at line 740 of file endpoint.hpp.
|
inline |
Marks the endpoint as perpetual, stopping it from exiting when empty.
Marks the endpoint as perpetual. Perpetual endpoints will not automatically exit when they run out of connections to process. To stop a perpetual endpoint call end_perpetual.
An endpoint may be marked perpetual at any time by any thread. It must be called either before the endpoint has run out of work or before it was started
Definition at line 712 of file endpoint.hpp.
|
inline |
wraps the stop method of the internal io_context object
Definition at line 676 of file endpoint.hpp.
|
inline |
Stop listening.
Stop listening and accepting new connections. This will not end any existing connections.
Definition at line 647 of file endpoint.hpp.
|
inline |
Stop listening (exception free).
Stop listening and accepting new connections.
If the endpoint needs to shut down fully (i.e. close all connections) this member function is necessary but not sufficient. In addition to stopping listening, individual connections will need to be ended via their respective connection::close.
For more details on clean closing, please refer to Cleanly closing Asio Transport based endpoints
| ec | A status code indicating an error, if any. |
Definition at line 546 of file endpoint.hpp.
|
inline |
Clears the endpoint's perpetual flag, allowing it to exit when empty.
Clears the endpoint's perpetual flag. This will cause the endpoint's run method to exit normally when it runs out of connections. If there are currently active connections it will not end until they are complete.
Definition at line 724 of file endpoint.hpp.
|
inline |
wraps the stopped method of the internal io_context object
Definition at line 696 of file endpoint.hpp.