Reversed more client header in preparation for netchan fix
This commit is contained in:
parent
15631bcec2
commit
252c210156
@ -4215,6 +4215,51 @@ namespace Game
|
|||||||
char ipx[10];
|
char ipx[10];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct netProfileInfo_t
|
||||||
|
{
|
||||||
|
char __pad0[0x5E0];
|
||||||
|
};
|
||||||
|
|
||||||
|
static_assert(sizeof(netProfileInfo_t) == 0x5E0);
|
||||||
|
|
||||||
|
struct netchan_t
|
||||||
|
{
|
||||||
|
// 0
|
||||||
|
int outgoingSequence;
|
||||||
|
// 4
|
||||||
|
netsrc_t sock;
|
||||||
|
// 8
|
||||||
|
int dropped;
|
||||||
|
// 12
|
||||||
|
int incomingSequence;
|
||||||
|
// 16
|
||||||
|
netadr_t remoteAddress;
|
||||||
|
// 36
|
||||||
|
int qport;
|
||||||
|
// 40
|
||||||
|
int fragmentSequence;
|
||||||
|
// 44
|
||||||
|
int fragmentLength;
|
||||||
|
// 48
|
||||||
|
char* fragmentBuffer;
|
||||||
|
// 52
|
||||||
|
int fragmentBufferSize;
|
||||||
|
// 56
|
||||||
|
int unsentFragments;
|
||||||
|
// 60
|
||||||
|
int unsentFragmentStart;
|
||||||
|
// 64
|
||||||
|
int unsentLength;
|
||||||
|
// 68
|
||||||
|
char* unsentBuffer;
|
||||||
|
// 72
|
||||||
|
int unsentBufferSize;
|
||||||
|
// 76
|
||||||
|
netProfileInfo_t prof;
|
||||||
|
};
|
||||||
|
|
||||||
|
static_assert(sizeof(netchan_t) == 0x62C);
|
||||||
|
|
||||||
struct FxEditorElemAtlas
|
struct FxEditorElemAtlas
|
||||||
{
|
{
|
||||||
int behavior;
|
int behavior;
|
||||||
@ -4630,13 +4675,11 @@ namespace Game
|
|||||||
// 12
|
// 12
|
||||||
char __pad1[12];
|
char __pad1[12];
|
||||||
// 24
|
// 24
|
||||||
int outgoingSequence;
|
netchan_t netchan;
|
||||||
// 28
|
// 1604
|
||||||
char __pad2[12];
|
char __pad3[20];
|
||||||
// 40
|
// 1624
|
||||||
netadr_t addr;
|
const char* delayDropReason;
|
||||||
// 60
|
|
||||||
char __pad3[1568];
|
|
||||||
// 1628
|
// 1628
|
||||||
char connectInfoString[1024];
|
char connectInfoString[1024];
|
||||||
// 2652
|
// 2652
|
||||||
@ -4672,6 +4715,8 @@ namespace Game
|
|||||||
} client_t;
|
} client_t;
|
||||||
#pragma pack(pop)
|
#pragma pack(pop)
|
||||||
|
|
||||||
|
static_assert(sizeof(client_t) == 681872);
|
||||||
|
|
||||||
struct CModelAllocData
|
struct CModelAllocData
|
||||||
{
|
{
|
||||||
void* mainArray;
|
void* mainArray;
|
||||||
|
Loading…
Reference in New Issue
Block a user