forked from derandark/PhatAC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNetworkDefs.h
80 lines (69 loc) · 2.09 KB
/
NetworkDefs.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#pragma once
struct BlobHeader_s //Size: 0x14
{
DWORD dwSequence; //0x00
DWORD dwFlags; //0x04
DWORD dwCRC; //0x08
WORD wRecID; //0x0C
WORD wTime; //0x0E
WORD wSize; //0x10
WORD wTable; //0x12
};
struct BlobPacket_s
{
BlobHeader_s header;
BYTE data[];
};
#define DUPEBLOB(name, source) \
BlobPacket_s *name = (BlobPacket_s *)new BYTE[ BLOBLEN(source) ]; \
memcpy(name, source, BLOBLEN(source));
#define CREATEBLOB(name, size) \
BlobPacket_s *name = (BlobPacket_s *)new BYTE[ sizeof(BlobHeader_s) + (size) ]; \
name->header.wSize = (WORD)(size);
#define DELETEBLOB(name) delete [] name
#define BLOBLEN(x) (sizeof(BlobHeader_s) + (x)->header.wSize)
struct FragHeader_s
{
DWORD dwSequence;
DWORD dwID;
WORD wCount;
WORD wSize;
WORD wIndex;
WORD wGroup;
};
struct FragPacket_s
{
FragHeader_s header;
BYTE data[];
};
#pragma pack(pop)
#pragma warning(default: 4200)
//Blob types.
#define BT_NULL 0x00000000 //Used on account login packets.
#define BT_RESENT 0x00000001 //
#define BT_REQUESTLOST 0x00001000 // What value is this now?
// #define BT_FLUSH 0x00000004 // What value is this now?
#define BT_DENY 0x00002000 //
#define BT_ACKSEQUENCE 0x00004000 //
#define BT_DISCONNECT 0x00008000 //
#define BT_CONNECTIONACK 0x00080000 //
// #define BT_CRCUPDATE 0x00000100 Not sure what this is now //
#define BT_FRAGMENTS 0x00000004 // 0x00000200 //
#define BT_RESETTIME 0x00000400 //
//#define BT_STRANSFER 0x00000800 0x100? //Server transfers. Used on login servers, primarily.
#define BT_LOGIN 0x00010000 //
//#define BT_WTRANSFER 0x00020000 0x100? //Server transfers. Used on world servers, primarily.
#define BT_LOGINREPLY 0x00040000 //
// #define BT_WAKE 0x00080000 //
#define BT_TIMEUPDATE 0x01000000 //
#define BT_ECHOREQUEST 0x02000000 //hi u
#define BT_ECHORESPONSE 0x04000000 //hi u
#define BT_FLOW 0x08000000 //hi u
#define BT_ERROR 0x00800000 //
#define BT_USES_CRC 0x2
#define OBJECT_MSG 10 // old value was 0x03?
#define PRIVATE_MSG 9 // old value was 0x04?
#define EVENT_MSG 5 // old value was 0x07?
#define MAX_BLOB_LEN 0x1E8
#define MAX_FRAGMENT_LEN 0x1C0
#define MAX_MESSAGE_LEN (0x1C0 * 0x10)