diff options
author | Thilo Schulz <arny@ats.s.bawue.de> | 2011-06-21 13:31:19 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-10 21:47:35 +0000 |
commit | 1e341b0725223328db7331f4b2bf2b905b34e352 (patch) | |
tree | 26c2c42147db05b40b87f70448a9bbdc3ededafc /src/qcommon | |
parent | 49e79b120ab36b6835ceeb0a64d2930cdb8201e6 (diff) |
- Clear ip address listings after a NET_Restart - check for oldGameSet instead of the gamename string
Diffstat (limited to 'src/qcommon')
-rw-r--r-- | src/qcommon/net_ip.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qcommon/net_ip.c b/src/qcommon/net_ip.c index d7dc8b5f..b6a158ce 100644 --- a/src/qcommon/net_ip.c +++ b/src/qcommon/net_ip.c @@ -1287,6 +1287,8 @@ static void NET_GetLocalAddress(void) { struct ifaddrs *ifap, *search; + numIP = 0; + if(getifaddrs(&ifap)) Com_Printf("NET_GetLocalAddress: Unable to get list of network interfaces: %s\n", NET_ErrorString()); else @@ -1309,6 +1311,8 @@ static void NET_GetLocalAddress( void ) { struct addrinfo hint; struct addrinfo *res = NULL; + numIP = 0; + if(gethostname( hostname, 256 ) == SOCKET_ERROR) return; |