- Replaced @send with the version I use for testing packets.
Can display the packet length. Supports dynamic packets, quoted strings with escaped characters and fixed/variable length, and normal/hex byte/word/long data types. The number of fields is not limited, but it automatically stops parsing when the packet is full. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@9387 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
7935fd82c4
commit
b522ca0cdc
@ -3,6 +3,12 @@ Date Added
|
||||
AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK.
|
||||
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
|
||||
|
||||
2006/12/02
|
||||
* Replaced @send with the version I use for testing packets.
|
||||
Can display the packet length. Supports dynamic packets, quoted strings
|
||||
with escaped characters and fixed/variable length, and normal/hex
|
||||
byte/word/long data types. The number of fields is not limited, but it
|
||||
automatically stops parsing when the packet is full. [FlavioJS]
|
||||
2006/12/01
|
||||
* Fixed passive mobs becoming increasingly unlikely to retaliate to attacks
|
||||
after they got inflicted by a disabling status change. [Skotlex]
|
||||
|
@ -72,6 +72,10 @@ extern time_t stall_time;
|
||||
#define WBUFW(p,pos) (*(unsigned short*)((p) + (pos)))
|
||||
#define WBUFL(p,pos) (*(unsigned long*)((p) + (pos)))
|
||||
|
||||
#define TOB(n) ((unsigned char)(n))
|
||||
#define TOW(n) ((unsigned short)(n))
|
||||
#define TOL(n) ((unsigned long)(n))
|
||||
|
||||
//FD_SETSIZE must be modified on the project files/Makefile, since a change here won't affect
|
||||
// dependant windows libraries.
|
||||
/*
|
||||
|
21411
src/map/atcommand.c
21411
src/map/atcommand.c
File diff suppressed because it is too large
Load Diff
24643
src/map/clif.c
24643
src/map/clif.c
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user