A websocket connection. More...
#include <websocket.h>
Public Member Functions | |
Connection (const crow::request &req, Adaptor &&adaptor, std::function< void(crow::websocket::connection &)> open_handler, std::function< void(crow::websocket::connection &, const std::string &, bool)> message_handler, std::function< void(crow::websocket::connection &, const std::string &)> close_handler, std::function< void(crow::websocket::connection &)> error_handler, std::function< bool(const crow::request &)> accept_handler) | |
Constructor for a connection. More... | |
template<typename CompletionHandler > | |
void | dispatch (CompletionHandler handler) |
Send data through the socket. | |
template<typename CompletionHandler > | |
void | post (CompletionHandler handler) |
Send data through the socket and return immediately. | |
void | send_ping (const std::string &msg) override |
Send a "Ping" message. More... | |
void | send_pong (const std::string &msg) override |
Send a "Pong" message. More... | |
void | send_binary (const std::string &msg) override |
Send a binary encoded message. More... | |
void | send_text (const std::string &msg) override |
Send a plaintext message. More... | |
void | close (const std::string &msg) override |
Send a close signal. More... | |
![]() | |
virtual void | send_binary (const std::string &msg)=0 |
virtual void | send_text (const std::string &msg)=0 |
virtual void | send_ping (const std::string &msg)=0 |
virtual void | send_pong (const std::string &msg)=0 |
virtual void | close (const std::string &msg="quit")=0 |
void | userdata (void *u) |
void * | userdata () |
Protected Member Functions | |
std::string | build_header (int opcode, size_t size) |
Generate the websocket headers using an opcode and the message size (in bytes). | |
void | start (std::string &&hello) |
Send the HTTP upgrade response. More... | |
void | do_read () |
Read a websocket message. More... | |
bool | is_FIN () |
Check if the FIN bit is set. | |
int | opcode () |
Extract the opcode from the header. | |
void | handle_fragment () |
Process the payload fragment. More... | |
void | do_write () |
Send the buffers' data through the socket. More... | |
void | check_destroy () |
Destroy the Connection. | |
A websocket connection.
|
inline |
Constructor for a connection.
Requires a request with an "Upgrade: websocket" header.
Automatically handles the handshake.
|
inlineoverridevirtual |
Send a close signal.
Sets a flag to destroy the object once the message is sent.
Implements crow::websocket::connection.
|
inlineprotected |
Read a websocket message.
Involves:
Handling headers (opcodes, size).
Unmasking the payload.
Reading the actual payload.
|
inlineprotected |
Send the buffers' data through the socket.
Also destroyes the object if the Close flag is set.
|
inlineprotected |
Process the payload fragment.
Unmasks the fragment, checks the opcode, merges fragments into 1 message body, and calls the appropriate handler.
|
inlineoverridevirtual |
Send a binary encoded message.
Implements crow::websocket::connection.
|
inlineoverridevirtual |
Send a "Ping" message.
Usually invoked to check if the other point is still online.
Implements crow::websocket::connection.
|
inlineoverridevirtual |
Send a "Pong" message.
Usually automatically invoked as a response to a "Ping" message.
Implements crow::websocket::connection.
|
inlineoverridevirtual |
Send a plaintext message.
Implements crow::websocket::connection.
|
inlineprotected |
Send the HTTP upgrade response.
Finishes the handshake process, then starts reading messages from the socket.