1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

Increased MAX_BROADCAST_PAYLOAD to match MAX_USER_RX_BUFFER.

This commit is contained in:
David Galeano 2013-01-10 10:41:10 +08:00 committed by Andy Green
parent 229b7115bf
commit 6b66791b46

View file

@ -124,7 +124,7 @@ void debug(const char *format, ...)
#define LWS_INITIAL_HDR_ALLOC 256
#define LWS_ADDITIONAL_HDR_ALLOC 64
#define MAX_USER_RX_BUFFER 4096
#define MAX_BROADCAST_PAYLOAD 2048
#define MAX_BROADCAST_PAYLOAD 4096
#define LWS_MAX_PROTOCOLS 10
#define LWS_MAX_EXTENSIONS_ACTIVE 10
#define SPEC_LATEST_SUPPORTED 13