mirror of
https://github.com/rehlds/rehlds.git
synced 2025-01-30 15:38:05 +03:00
Merge pull request #401 from Chuvi-w/RemoveSplitpacketMagicNumber
Changed magic number -2 (0xFFFFFFFE to NET_HEADER_FLAG_SPLITPACKET)
This commit is contained in:
commit
3571706f02
@ -1028,7 +1028,7 @@ qboolean NET_QueuePacket(netsrc_t sock)
|
|||||||
|
|
||||||
NET_TransferRawData(&in_message, buf, ret);
|
NET_TransferRawData(&in_message, buf, ret);
|
||||||
|
|
||||||
if (*(uint32 *)in_message.data != 0xFFFFFFFE)
|
if (*(int32 *)in_message.data != NET_HEADER_FLAG_SPLITPACKET)
|
||||||
{
|
{
|
||||||
return NET_LagPacket(1, sock, &in_from, &in_message);
|
return NET_LagPacket(1, sock, &in_from, &in_message);
|
||||||
}
|
}
|
||||||
@ -1350,7 +1350,7 @@ int NET_SendLong(netsrc_t sock, SOCKET s, const char *buf, int len, int flags, c
|
|||||||
}
|
}
|
||||||
|
|
||||||
pPacket = (SPLITPACKET *)packet;
|
pPacket = (SPLITPACKET *)packet;
|
||||||
pPacket->netID = -2;
|
pPacket->netID = NET_HEADER_FLAG_SPLITPACKET;
|
||||||
pPacket->sequenceNumber = gSequenceNumber;
|
pPacket->sequenceNumber = gSequenceNumber;
|
||||||
packetNumber = 0;
|
packetNumber = 0;
|
||||||
totalSent = 0;
|
totalSent = 0;
|
||||||
|
@ -54,6 +54,8 @@
|
|||||||
#define NUM_MSG_QUEUES 40
|
#define NUM_MSG_QUEUES 40
|
||||||
#define MSG_QUEUE_SIZE 1536
|
#define MSG_QUEUE_SIZE 1536
|
||||||
|
|
||||||
|
#define NET_HEADER_FLAG_SPLITPACKET -2
|
||||||
|
|
||||||
typedef struct loopmsg_s
|
typedef struct loopmsg_s
|
||||||
{
|
{
|
||||||
unsigned char data[NET_MAX_MESSAGE];
|
unsigned char data[NET_MAX_MESSAGE];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user