diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-12 12:13:07 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-12 12:13:07 -0600 |
commit | 7ff659180864c80f6190afaa1f0bda9298f6e9bb (patch) | |
tree | 7959b25fbd896564c8320545f15cc3790664e133 /modules/websocket/websocket_peer.h | |
parent | 190670d16b8e432e0a588fcd99e2c459e9323513 (diff) | |
parent | 3114bda4e1ee88f04f55451697f24c9ee79be54f (diff) | |
download | redot-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.h | 2 |
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: |