Skip to content

Commit b6e8b6c

Browse files
committed
Larger window size for reduced fragmentation
1 parent 5685739 commit b6e8b6c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/AsyncWebSocket.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ size_t webSocketSendFrameWindow(AsyncClient *client) {
3636
return 0;
3737
}
3838
size_t space = client->space();
39-
if (space < 9) {
39+
if (space < 128) {
4040
return 0;
4141
}
4242
return space - 8;

0 commit comments

Comments
 (0)