WebSocket++
0.8.1
C++ websocket client/server library
|
Constants related to frame and payload limits. More...
Variables | |
static unsigned const int | basic_header_length = 2 |
Minimum length of a WebSocket frame header. | |
static unsigned const int | max_header_length = 14 |
Maximum length of a WebSocket header. | |
static unsigned const int | max_extended_header_length = 12 |
Maximum length of the variable portion of the WebSocket header. | |
static const uint8_t | payload_size_basic = 125 |
Maximum size of a basic WebSocket payload. | |
static const uint16_t | payload_size_extended = 0xFFFF |
Maximum size of an extended WebSocket payload (basic payload = 126) | |
static const uint64_t | payload_size_jumbo = 0x7FFFFFFFFFFFFFFFLL |
Maximum size of a jumbo WebSocket payload (basic payload = 127) | |
static const uint8_t | close_reason_size = 123 |
Maximum size of close frame reason. More... | |
Constants related to frame and payload limits.