diff options
author | Thilo Schulz <arny@ats.s.bawue.de> | 2011-04-27 20:17:45 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-09 20:50:34 +0000 |
commit | 8a58b6a7deb03a07e8169790bd4b9a8f38ecc718 (patch) | |
tree | 63dc3db5ae296658a1e4628a8d8299dc53c340af /src/qcommon/qcommon.h | |
parent | 5f86560ea8e97801d8db3b5a39011f27aac4131d (diff) |
Revert protocol 69 pending further discussion (#4962)
Diffstat (limited to 'src/qcommon/qcommon.h')
-rw-r--r-- | src/qcommon/qcommon.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/qcommon/qcommon.h b/src/qcommon/qcommon.h index affde995..d09ee299 100644 --- a/src/qcommon/qcommon.h +++ b/src/qcommon/qcommon.h @@ -192,8 +192,7 @@ void NET_Sleep(int msec); #define MAX_DOWNLOAD_WINDOW 8 // max of eight download frames #define MAX_DOWNLOAD_BLKSIZE 2048 // 2048 byte block chunks - -#define NETCHAN_GENCHECKSUM(challenge, sequence) ((challenge) ^ ((sequence) * (challenge))) + /* Netchan handles packet fragmentation and out of order / duplicate suppression @@ -222,12 +221,10 @@ typedef struct { int unsentFragmentStart; int unsentLength; byte unsentBuffer[MAX_MSGLEN]; - - int challenge; } netchan_t; void Netchan_Init( int qport ); -void Netchan_Setup(netsrc_t sock, netchan_t *chan, netadr_t adr, int qport, int challenge); +void Netchan_Setup( netsrc_t sock, netchan_t *chan, netadr_t adr, int qport ); void Netchan_Transmit( netchan_t *chan, int length, const byte *data ); void Netchan_TransmitNextFragment( netchan_t *chan ); @@ -243,7 +240,7 @@ PROTOCOL ============================================================== */ -#define PROTOCOL_VERSION 71 +#define PROTOCOL_VERSION 70 // maintain a list of compatible protocols for demo playing // NOTE: that stuff only works with two digits protocols |