diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-12-17 13:52:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-12-17 13:52:39 +0300 |
commit | 590fcf04372ac04e098d8499a5d3e8c9adc0981d (patch) | |
tree | 11eccbc4e6f617a0216f59c1e77ad40eb6851161 /src/common | |
parent | d4460ce0fcca62cd4fe6d45b12c55eb286244fee (diff) | |
parent | 96759fdd5dbc222c3d693f68c85a98b5557bf405 (diff) | |
download | hercules-590fcf04372ac04e098d8499a5d3e8c9adc0981d.tar.gz hercules-590fcf04372ac04e098d8499a5d3e8c9adc0981d.tar.bz2 hercules-590fcf04372ac04e098d8499a5d3e8c9adc0981d.tar.xz hercules-590fcf04372ac04e098d8499a5d3e8c9adc0981d.zip |
Merge pull request #917 from dastgir/packet
Update max packet size according to client date
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/socket.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/common/socket.c b/src/common/socket.c index 87575f5c3..f67c3d074 100644 --- a/src/common/socket.c +++ b/src/common/socket.c @@ -254,7 +254,11 @@ fd_set readfds; // Maximum packet size in bytes, which the client is able to handle. // Larger packets cause a buffer overflow and stack corruption. -static size_t socket_max_client_packet = 24576; +#if PACKETVER >= 20131223 +static size_t socket_max_client_packet = 0xFFFF; +#else +static size_t socket_max_client_packet = 0x6000; +#endif #ifdef SHOW_SERVER_STATS // Data I/O statistics |