NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
websocketpp::transport::debug::endpoint< config > Class Template Reference

#include <endpoint.hpp>

Public Types

typedef endpoint type
 Type of this endpoint transport component. More...
 
typedef lib::shared_ptr< typeptr
 Type of a pointer to this endpoint transport component. More...
 
typedef config::concurrency_type concurrency_type
 Type of this endpoint's concurrency policy. More...
 
typedef config::elog_type elog_type
 Type of this endpoint's error logging policy. More...
 
typedef config::alog_type alog_type
 Type of this endpoint's access logging policy. More...
 
typedef debug::connection< configtransport_con_type
 Type of this endpoint transport component's associated connection transport component. More...
 
typedef transport_con_type::ptr transport_con_ptr
 Type of a shared pointer to this endpoint transport component's associated connection transport component. More...
 

Public Member Functions

 endpoint ()
 
void set_secure (bool)
 Set whether or not endpoint can create secure connections. More...
 
bool is_secure () const
 Tests whether or not the underlying transport is secure. More...
 

Protected Member Functions

void init_logging (lib::shared_ptr< alog_type >, lib::shared_ptr< elog_type >)
 Initialize logging. More...
 
void async_connect (transport_con_ptr, uri_ptr, connect_handler cb)
 Initiate a new connection. More...
 
lib::error_code init (transport_con_ptr)
 Initialize a connection. More...
 

Detailed Description

template<typename config>
class websocketpp::transport::debug::endpoint< config >

Definition at line 42 of file endpoint.hpp.

Member Typedef Documentation

◆ type

template<typename config >
typedef endpoint websocketpp::transport::debug::endpoint< config >::type

Type of this endpoint transport component.

Definition at line 45 of file endpoint.hpp.

◆ ptr

template<typename config >
typedef lib::shared_ptr<type> websocketpp::transport::debug::endpoint< config >::ptr

Type of a pointer to this endpoint transport component.

Definition at line 47 of file endpoint.hpp.

◆ concurrency_type

Type of this endpoint's concurrency policy.

Definition at line 50 of file endpoint.hpp.

◆ elog_type

Type of this endpoint's error logging policy.

Definition at line 52 of file endpoint.hpp.

◆ alog_type

Type of this endpoint's access logging policy.

Definition at line 54 of file endpoint.hpp.

◆ transport_con_type

Type of this endpoint transport component's associated connection transport component.

Definition at line 58 of file endpoint.hpp.

◆ transport_con_ptr

Type of a shared pointer to this endpoint transport component's associated connection transport component.

Definition at line 61 of file endpoint.hpp.

Constructor & Destructor Documentation

◆ endpoint()

template<typename config >
websocketpp::transport::debug::endpoint< config >::endpoint ( )
inlineexplicit

Definition at line 64 of file endpoint.hpp.

Member Function Documentation

◆ set_secure()

template<typename config >
void websocketpp::transport::debug::endpoint< config >::set_secure ( bool  )
inline

Set whether or not endpoint can create secure connections.

TODO: docs

Setting this value only indicates whether or not the endpoint is capable of producing and managing secure connections. Connections produced by this endpoint must also be individually flagged as secure if they are.

Since
0.3.0-alpha4
Parameters
valueWhether or not the endpoint can create secure connections.

Definition at line 81 of file endpoint.hpp.

◆ is_secure()

template<typename config >
bool websocketpp::transport::debug::endpoint< config >::is_secure ( ) const
inline

Tests whether or not the underlying transport is secure.

TODO: docs

Returns
Whether or not the underlying transport is secure

Definition at line 89 of file endpoint.hpp.

◆ init_logging()

template<typename config >
void websocketpp::transport::debug::endpoint< config >::init_logging ( lib::shared_ptr< alog_type ,
lib::shared_ptr< elog_type  
)
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.

Parameters
aA pointer to the access logger to use.
eA pointer to the error logger to use.

Definition at line 106 of file endpoint.hpp.

◆ async_connect()

template<typename config >
void websocketpp::transport::debug::endpoint< config >::async_connect ( transport_con_ptr  ,
uri_ptr  ,
connect_handler  cb 
)
inlineprotected

Initiate a new connection.

Parameters
tconA pointer to the transport connection component of the connection to connect.
uA URI pointer to the URI to connect to.
cbThe function to call back with the results when complete.

Definition at line 115 of file endpoint.hpp.

◆ init()

template<typename config >
lib::error_code websocketpp::transport::debug::endpoint< config >::init ( transport_con_ptr  )
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.

Parameters
tconA pointer to the transport portion of the connection.
Returns
A status code indicating the success or failure of the operation

Definition at line 129 of file endpoint.hpp.


The documentation for this class was generated from the following file: