diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-02-02 22:03:05 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-02-02 22:03:05 +0000 |
commit | e613ccec54b8ef64eb3e807b5097611cb53c199c (patch) | |
tree | 3d53cffb9f9107d7ad59c259ae8a679518075c39 /Changelog-Trunk.txt | |
parent | 24bc674295e1dc2ebbfa4fae3f68a70311c98594 (diff) | |
download | hercules-e613ccec54b8ef64eb3e807b5097611cb53c199c.tar.gz hercules-e613ccec54b8ef64eb3e807b5097611cb53c199c.tar.bz2 hercules-e613ccec54b8ef64eb3e807b5097611cb53c199c.tar.xz hercules-e613ccec54b8ef64eb3e807b5097611cb53c199c.zip |
Fine-tuned the global message processing function
- now detects access-out-of-rfifo attempts (idea from eA++)
- uses the new CHAT_SIZE define to restrict message lengths
- detects Frost Joke/Dazzler and gives them more freedom (from Freya)
- more strict non-conformant message detection
- logging every problem to the mapserver console
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9781 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'Changelog-Trunk.txt')
-rw-r--r-- | Changelog-Trunk.txt | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 1e664d0d4..0fc6bbc55 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,9 +4,27 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. 2007/02/02 + * Fine-tuned the global message processing function [ultramage] + - now detects access-out-of-rfifo attempts (idea from eA++) + - uses the new CHAT_SIZE define to restrict message lengths + - detects Frost Joke/Dazzler and gives them more freedom (from Freya) + - more strict non-conformant message detection + - logging every problem to the mapserver console * Resetting skills will now automatically remove peco, falcon, cart and homunculus (vaporize). - * Fixed random mob picking choosing clones. [Skotlex] + * Fixed random mob picking choosing clones. + * Fixed critical spots that could be exploited [Skotlex] + - The define MESSAGE_SIZE was wrong! It is only used for input boxes. + Therefore now it is only used for Vending, Talkie box and Graffiti + - Added new define CHAT_SIZE which holds the max length that a client + can send from the chat buffer + - Added define msg_len_check which crops incoming client text if it's + longer than CHAT_SIZE. Added cropping to all incoming messages except + normal chatting which is already accounted for. + - Removed variable talkie_mes, this is now handled by sd->message + - Cleaned up parser functions for /b /lb, gm kick, /shift, /recall + - Added crash protection to the logging functions when they receive + a too long string. 2007/02/01 * Restricted global messages to 255 characters (client shows only ~80 anyway, wanted to use 127 but frost joke's lines are longer than that ...) |