|
From: Chad M. <cmm...@us...> - 2005-10-07 00:17:04
|
Update of /cvsroot/seq/showeq In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30728 Modified Files: ChangeLog configure.in Log Message: Check sizes of SessionRequest and SessionResponse so we don't confuse non-EQ packets with EQ packets. Also put a cap on max length for payloads. Index: ChangeLog =================================================================== RCS file: /cvsroot/seq/showeq/ChangeLog,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- ChangeLog 5 Oct 2005 15:29:08 -0000 1.8 +++ ChangeLog 7 Oct 2005 00:16:54 -0000 1.9 @@ -2,12 +2,20 @@ purple (10/05/05) ------------------- ++ Updated version 5.2.0.0 + Fixed item links in the terminal and message window so they match correctly based on the new item link format (thanks to ksmith and EQItems for all their great open info about items in EQ and being very on the ball with the last patch) + New races from .exe + Allow world logging from the commandline ++ Sanity check the max length specified in SessionRequest/Response so that + we don't malloc huge amounts for packets. ++ Check SessionRequest/Response length before assuming a packet that starts + with the correct opcode is an EQ packet. This should weed out MS Teredo + packets which were being seen as SessionRequests and causing all sorts + of havoc. ++ Got rid of the unknown payload type utf8 warning purple (09/17/05) ------------------- Index: configure.in =================================================================== RCS file: /cvsroot/seq/showeq/configure.in,v retrieving revision 1.57 retrieving revision 1.58 diff -u -d -r1.57 -r1.58 --- configure.in 17 Sep 2005 01:47:55 -0000 1.57 +++ configure.in 7 Oct 2005 00:16:56 -0000 1.58 @@ -2,7 +2,7 @@ dnl $Id$ $Name$ AC_PREREQ(2.59) -AC_INIT(showeq, 5.1.0.0) +AC_INIT(showeq, 5.2.0.0) AC_CONFIG_SRCDIR(src/main.cpp) AC_CANONICAL_SYSTEM |