mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
More informative UDP setup failure messages.
This commit is contained in:
parent
acb4e8dd87
commit
2630ed1adf
3 changed files with 3 additions and 3 deletions
|
@ -422,7 +422,7 @@ NET_Init (int port)
|
|||
// determine my name & address
|
||||
NET_GetLocalAddress ();
|
||||
|
||||
Con_Printf ("UDP Initialized\n");
|
||||
Con_Printf ("UDP (IPv4) Initialized\n");
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
@ -550,7 +550,7 @@ NET_Init (int port)
|
|||
// determine my name & address
|
||||
NET_GetLocalAddress ();
|
||||
|
||||
Con_Printf ("UDP Initialized\n");
|
||||
Con_Printf ("UDP (IPv6) Initialized\n");
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
@ -162,7 +162,7 @@ UDP_Init (void)
|
|||
if (colon)
|
||||
*colon = 0;
|
||||
|
||||
Con_Printf ("UDP Initialized\n");
|
||||
Con_Printf ("UDP (IPv4) Initialized\n");
|
||||
tcpipAvailable = true;
|
||||
|
||||
return net_controlsocket;
|
||||
|
|
Loading…
Reference in a new issue