diff options
author | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2007-08-28 16:42:13 +0000 |
---|---|---|
committer | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2007-08-28 16:42:13 +0000 |
commit | 04fc4656c928d58cdbbc60c605c5036564919ff4 (patch) | |
tree | a69fe4300fe993a4983dc57c9aeecd68c23faaf3 /code/client | |
parent | f1ea2218d313ec44da8718529a8603616ae68619 (diff) | |
download | ioquake3-aero-04fc4656c928d58cdbbc60c605c5036564919ff4.tar.gz ioquake3-aero-04fc4656c928d58cdbbc60c605c5036564919ff4.zip |
* 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
git-svn-id: svn://svn.icculus.org/quake3/trunk@1139 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/client')
-rw-r--r-- | code/client/cl_main.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/code/client/cl_main.c b/code/client/cl_main.c index ee538e0..c235a21 100644 --- a/code/client/cl_main.c +++ b/code/client/cl_main.c @@ -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 ); } } } |