More informative UDP setup failure messages.

This commit is contained in:
Ragnvald Maartmann-Moe IV 2003-06-26 20:24:47 +00:00
parent acb4e8dd87
commit 2630ed1adf
3 changed files with 3 additions and 3 deletions

View file

@ -422,7 +422,7 @@ NET_Init (int port)
// determine my name & address // determine my name & address
NET_GetLocalAddress (); NET_GetLocalAddress ();
Con_Printf ("UDP Initialized\n"); Con_Printf ("UDP (IPv4) Initialized\n");
} }
void void

View file

@ -550,7 +550,7 @@ NET_Init (int port)
// determine my name & address // determine my name & address
NET_GetLocalAddress (); NET_GetLocalAddress ();
Con_Printf ("UDP Initialized\n"); Con_Printf ("UDP (IPv6) Initialized\n");
} }
void void

View file

@ -162,7 +162,7 @@ UDP_Init (void)
if (colon) if (colon)
*colon = 0; *colon = 0;
Con_Printf ("UDP Initialized\n"); Con_Printf ("UDP (IPv4) Initialized\n");
tcpipAvailable = true; tcpipAvailable = true;
return net_controlsocket; return net_controlsocket;