Skip to content

Commit

Permalink
Fix maximum allowed sent data size
Browse files Browse the repository at this point in the history
  • Loading branch information
iliajie committed Aug 4, 2024
1 parent e71badd commit 81daae7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stats.pl
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
};
alarm(30);
# Set maximum send size
$conn->max_send_size(128 * 1024);
$conn->max_send_size(384 * 1024); # Sent data must never be more than 384 KB
# Handle connection events
$conn->on(
utf8 => sub {
Expand Down

0 comments on commit 81daae7

Please sign in to comment.