#include <websocketpp/close.hpp>#include <websocketpp/error.hpp>#include <websocketpp/frame.hpp>#include <websocketpp/logger/levels.hpp>#include <websocketpp/processors/processor.hpp>#include <websocketpp/transport/base/connection.hpp>#include <websocketpp/http/constants.hpp>#include <websocketpp/common/connection_hdl.hpp>#include <websocketpp/common/cpp11.hpp>#include <websocketpp/common/functional.hpp>#include <queue>#include <sstream>#include <string>#include <vector>#include <websocketpp/impl/connection_impl.hpp>

Go to the source code of this file.
Classes | |
| class | websocketpp::connection< config > | 
| Represents an individual WebSocket connection.  More... | |
Namespaces | |
| websocketpp | |
| Namespace for the WebSocket++ project.  | |
| websocketpp::session | |
| websocketpp::session::state | |
| websocketpp::session::fail | |
| websocketpp::session::fail::status | |
| websocketpp::session::internal_state | |
| websocketpp::session::http_state | |
Typedefs | |
| typedef lib::function< void(connection_hdl)> | websocketpp::open_handler | 
| The type and function signature of an open handler.  More... | |
| typedef lib::function< void(connection_hdl)> | websocketpp::close_handler | 
| The type and function signature of a close handler.  More... | |
| typedef lib::function< void(connection_hdl)> | websocketpp::fail_handler | 
| The type and function signature of a fail handler.  More... | |
| typedef lib::function< void(connection_hdl)> | websocketpp::interrupt_handler | 
| The type and function signature of an interrupt handler.  More... | |
| typedef lib::function< bool(connection_hdl, std::string)> | websocketpp::ping_handler | 
| The type and function signature of a ping handler.  More... | |
| typedef lib::function< void(connection_hdl, std::string)> | websocketpp::pong_handler | 
| The type and function signature of a pong handler.  More... | |
| typedef lib::function< void(connection_hdl, std::string)> | websocketpp::pong_timeout_handler | 
| The type and function signature of a pong timeout handler.  More... | |
| typedef lib::function< bool(connection_hdl)> | websocketpp::validate_handler | 
| The type and function signature of a validate handler.  More... | |
| typedef lib::function< void(connection_hdl)> | websocketpp::http_handler | 
| The type and function signature of a http handler.  More... | |
| typedef lib::function< void(lib::error_code const &ec, size_t bytes_transferred)> | websocketpp::read_handler | 
| typedef lib::function< void(lib::error_code const &ec)> | websocketpp::write_frame_handler | 
Functions | |
| static std::vector< int > const | websocketpp::versions_supported (helper, helper+4) | 
| Container that stores the list of protocol versions supported.  More... | |
Variables | |
| static int const | websocketpp::helper [] = {0,7,8,13} | 
| Helper array to get around lack of initializer lists pre C++11.  More... | |