mirror of
https://github.com/godotengine/godot.git
synced 2024-11-25 21:52:51 +00:00
Fix HTML5 WebSocket client buffers size.
This commit is contained in:
parent
10e9221c49
commit
77466285f2
@ -205,8 +205,8 @@ int EMWSClient::get_max_packet_size() const {
|
||||
}
|
||||
|
||||
EMWSClient::EMWSClient() {
|
||||
_in_buf_size = GLOBAL_GET(WSC_IN_BUF);
|
||||
_in_pkt_size = GLOBAL_GET(WSC_IN_PKT);
|
||||
_in_buf_size = nearest_shift((int)GLOBAL_GET(WSC_IN_BUF) - 1) + 10;
|
||||
_in_pkt_size = nearest_shift((int)GLOBAL_GET(WSC_IN_PKT) - 1);
|
||||
_is_connecting = false;
|
||||
_peer = Ref<EMWSPeer>(memnew(EMWSPeer));
|
||||
/* clang-format off */
|
||||
|
Loading…
Reference in New Issue
Block a user