mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2025-01-23 01:50:41 +00:00
IOQ3 commit 2082
This commit is contained in:
parent
db8459221b
commit
3b8fa714e7
1 changed files with 3 additions and 3 deletions
|
@ -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" ) ) {
|
||||||
|
|
Loading…
Reference in a new issue