diff options
author | lordttseven <lordttseven@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-02-18 22:05:21 +0000 |
---|---|---|
committer | lordttseven <lordttseven@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-02-18 22:05:21 +0000 |
commit | e4f1bb413aa609b173707b9e5d960ae0476dab61 (patch) | |
tree | 2b6ff2ec97a7008bc667f38e5b700dfe40c3fe13 /conf | |
parent | b687d790d516bf46dd03767f0e479b4a6a41eac2 (diff) | |
download | hercules-e4f1bb413aa609b173707b9e5d960ae0476dab61.tar.gz hercules-e4f1bb413aa609b173707b9e5d960ae0476dab61.tar.bz2 hercules-e4f1bb413aa609b173707b9e5d960ae0476dab61.tar.xz hercules-e4f1bb413aa609b173707b9e5d960ae0476dab61.zip |
* adjusted socket_max_client_packet to a more accurate (if guessed) value to prevent undefined client behavior (may only affect more recent clients?)
+ added a workaround for too large ZC_SKILLINFO_LIST packets resulting from all_skill group permission by sending excess skills one by one (bugreport:5348 and bugreport:5349)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15609 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'conf')
-rw-r--r-- | conf/packet_athena.conf | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/conf/packet_athena.conf b/conf/packet_athena.conf index 0741ac013..e1ce86a46 100644 --- a/conf/packet_athena.conf +++ b/conf/packet_athena.conf @@ -8,12 +8,13 @@ debug: no // How long can a socket stall before closing the connection (in seconds) stall_time: 60 -// Maximum allowed size for clients packets in bytes (default: 24576). +// Maximum allowed size for clients packets in bytes (default: 8192). // NOTE: To reduce the size of reported packets, lower the values of defines, which // have been customized, such as MAX_STORAGE, MAX_GUILD_STORAGE or MAX_CART. // NOTE: Do not modify this setting, unless the client has been modified to support -// larger packets. The client will crash, when it receives larger packets. -socket_max_client_packet: 24576 +// larger packets. The client will crash, when it receives larger packets, +// or worse, show undefined behavior. +socket_max_client_packet: 8192 //----- IP Rules Settings ----- |