mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-10 07:11:36 +00:00
IOQ3 commit 2298
This commit is contained in:
parent
8dc2ac159e
commit
914f0cfadf
1 changed files with 2 additions and 1 deletions
|
@ -651,6 +651,7 @@ void Sys_SendPacket( int length, const void *data, netadr_t to ) {
|
|||
}
|
||||
|
||||
if( (ip_socket == INVALID_SOCKET && to.type == NA_IP) ||
|
||||
(ip_socket == INVALID_SOCKET && to.type == NA_BROADCAST) ||
|
||||
(ip6_socket == INVALID_SOCKET && to.type == NA_IP6) ||
|
||||
(ip6_socket == INVALID_SOCKET && to.type == NA_MULTICAST6) )
|
||||
return;
|
||||
|
@ -690,7 +691,7 @@ void Sys_SendPacket( int length, const void *data, netadr_t to ) {
|
|||
return;
|
||||
}
|
||||
|
||||
Com_Printf( "NET_SendPacket: %s\n", NET_ErrorString() );
|
||||
Com_Printf( "Sys_SendPacket: %s\n", NET_ErrorString() );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue