Fixes the sockettcp issue without TCPCONNECT.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1650 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
b969d494b6
commit
aaf1a31b05
1 changed files with 2 additions and 0 deletions
|
@ -956,8 +956,10 @@ void SV_Status_f (void)
|
|||
Con_Printf ("ipv6 address : %s\n",NET_AdrToString (net_local_sv_ip6adr));
|
||||
if (svs.socketipx != INVALID_SOCKET && net_local_sv_ipxadr.type != NA_LOOPBACK)
|
||||
Con_Printf ("ipx address : %s\n",NET_AdrToString (net_local_sv_ipxadr));
|
||||
#ifdef TCPCONNECT
|
||||
if (svs.sockettcp != INVALID_SOCKET && net_local_sv_tcpipadr.type != NA_LOOPBACK)
|
||||
Con_Printf ("tcp address : %s\n",NET_AdrToString (net_local_sv_tcpipadr));
|
||||
#endif
|
||||
|
||||
Con_Printf ("cpu utilization : %3i%%\n",(int)cpu);
|
||||
Con_Printf ("avg response time: %i ms\n",(int)avg);
|
||||
|
|
Loading…
Reference in a new issue