summaryrefslogtreecommitdiffstats
path: root/modules/websocket/websocket_peer.h
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-11-12 12:13:07 -0600
committerThaddeus Crews <repiteo@outlook.com>2024-11-12 12:13:07 -0600
commit7ff659180864c80f6190afaa1f0bda9298f6e9bb (patch)
tree7959b25fbd896564c8320545f15cc3790664e133 /modules/websocket/websocket_peer.h
parent190670d16b8e432e0a588fcd99e2c459e9323513 (diff)
parent3114bda4e1ee88f04f55451697f24c9ee79be54f (diff)
downloadredot-engine-7ff659180864c80f6190afaa1f0bda9298f6e9bb.tar.gz
Merge pull request #98343 from Faless/ws/wslay_unbuffered
[WS] Implement wslay unbuffered message parsing
Diffstat (limited to 'modules/websocket/websocket_peer.h')
-rw-r--r--modules/websocket/websocket_peer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/websocket/websocket_peer.h b/modules/websocket/websocket_peer.h
index 3696e787e1..4854122471 100644
--- a/modules/websocket/websocket_peer.h
+++ b/modules/websocket/websocket_peer.h
@@ -71,7 +71,7 @@ protected:
int outbound_buffer_size = DEFAULT_BUFFER_SIZE;
int inbound_buffer_size = DEFAULT_BUFFER_SIZE;
- int max_queued_packets = 2048;
+ int max_queued_packets = 4096;
uint64_t heartbeat_interval_msec = 0;
public: