IOQ3 commit 2082

This commit is contained in:
Richard Allen 2011-07-18 17:15:07 +00:00
parent db8459221b
commit 3b8fa714e7

View file

@ -178,8 +178,8 @@ void SV_GetChallenge(netadr_t from)
#endif #endif
challenge->pingTime = svs.time; challenge->pingTime = svs.time;
NET_OutOfBandPrint(NS_SERVER, challenge->adr, "challengeResponse %d %d", NET_OutOfBandPrint(NS_SERVER, challenge->adr, "challengeResponse %d %d %d",
challenge->challenge, clientChallenge); challenge->challenge, clientChallenge, com_protocol->integer);
} }
#ifndef STANDALONE #ifndef STANDALONE
@ -232,7 +232,7 @@ void SV_AuthorizeIpPacket( netadr_t from ) {
} }
if ( !Q_stricmp( s, "accept" ) ) { if ( !Q_stricmp( s, "accept" ) ) {
NET_OutOfBandPrint(NS_SERVER, challengeptr->adr, NET_OutOfBandPrint(NS_SERVER, challengeptr->adr,
"challengeResponse %d %d", challengeptr->challenge, challengeptr->clientChallenge); "challengeResponse %d %d %d", challengeptr->challenge, challengeptr->clientChallenge, com_protocol->integer);
return; return;
} }
if ( !Q_stricmp( s, "unknown" ) ) { if ( !Q_stricmp( s, "unknown" ) ) {