* Merge win_net.c and unix_net.c

+ Move win32/win_net.c to qcommon/net_ip.c and make it portable
  + Remove unix_net.c, but incorporate its revision history into win_net.c
  + Remove all IPX support -- this remains compatible with existing mods
  + This change also inadvertently gets us SOCKS support on non-Windows
    platforms
This commit is contained in:
Tim Angus 2007-08-28 16:42:13 +00:00
parent a2d413428a
commit 0b3a077e15
10 changed files with 359 additions and 1027 deletions

View file

@ -2867,12 +2867,6 @@ void CL_ServerInfoPacket( netadr_t from, msg_t *msg ) {
type = 1;
break;
case NA_IPX:
case NA_BROADCAST_IPX:
str = "ipx";
type = 2;
break;
default:
str = "???";
type = 0;
@ -3160,9 +3154,6 @@ void CL_LocalServers_f( void ) {
to.type = NA_BROADCAST;
NET_SendPacket( NS_CLIENT, strlen( message ), message, to );
to.type = NA_BROADCAST_IPX;
NET_SendPacket( NS_CLIENT, strlen( message ), message, to );
}
}
}