]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - netconn.c
PROTOCOL_DARKPLACES5
[xonotic/darkplaces.git] / netconn.c
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3 Copyright (C) 2002 Mathieu Olivier
4 Copyright (C) 2003 Forest Hale
5
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either version 2
9 of the License, or (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14
15 See the GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20
21 */
22
23 #include "quakedef.h"
24 #include "lhnet.h"
25
26 #define MASTER_PORT 27950
27
28 cvar_t sv_public = {0, "sv_public", "0"};
29 static cvar_t sv_heartbeatperiod = {CVAR_SAVE, "sv_heartbeatperiod", "180"};
30
31 static cvar_t sv_masters [] =
32 {
33         {CVAR_SAVE, "sv_master1", ""},
34         {CVAR_SAVE, "sv_master2", ""},
35         {CVAR_SAVE, "sv_master3", ""},
36         {CVAR_SAVE, "sv_master4", ""},
37         {0, "sv_masterextra1", "69.59.212.88"},
38         {0, "sv_masterextra2", "66.28.32.64"},
39         {0, NULL, NULL}
40 };
41
42 static double nextheartbeattime = 0;
43
44 sizebuf_t net_message;
45
46 cvar_t net_messagetimeout = {0, "net_messagetimeout","300"};
47 cvar_t net_messagerejointimeout = {0, "net_messagerejointimeout","10"};
48 cvar_t net_connecttimeout = {0, "net_connecttimeout","10"};
49 cvar_t hostname = {CVAR_SAVE, "hostname", "UNNAMED"};
50 cvar_t developer_networking = {0, "developer_networking", "0"};
51
52 cvar_t cl_netlocalping_min = {0, "cl_netlocalping_min","0"};
53 cvar_t cl_netlocalping_max = {0, "cl_netlocalping_max","0"};
54 static cvar_t cl_netpacketloss_receive = {0, "cl_netpacketloss_receive","0"};
55 static cvar_t cl_netpacketloss_send = {0, "cl_netpacketloss_send","0"};
56 static cvar_t sv_netpacketloss_receive = {0, "sv_netpacketloss_receive","0"};
57 static cvar_t sv_netpacketloss_send = {0, "sv_netpacketloss_send","0"};
58
59
60 /* statistic counters */
61 static int packetsSent = 0;
62 static int packetsReSent = 0;
63 static int packetsReceived = 0;
64 static int receivedDuplicateCount = 0;
65 static int droppedDatagrams = 0;
66
67 static int unreliableMessagesSent = 0;
68 static int unreliableMessagesReceived = 0;
69 static int reliableMessagesSent = 0;
70 static int reliableMessagesReceived = 0;
71
72 double masterquerytime = -1000;
73 int masterquerycount = 0;
74 int masterreplycount = 0;
75 int serverquerycount = 0;
76 int serverreplycount = 0;
77
78 int hostCacheCount = 0;
79 hostcache_t hostcache[HOSTCACHESIZE];
80
81 static qbyte sendbuffer[NET_HEADERSIZE+NET_MAXMESSAGE];
82 static qbyte readbuffer[NET_HEADERSIZE+NET_MAXMESSAGE];
83
84 int cl_numsockets;
85 lhnetsocket_t *cl_sockets[16];
86 int sv_numsockets;
87 lhnetsocket_t *sv_sockets[16];
88
89 netconn_t *netconn_list = NULL;
90 mempool_t *netconn_mempool = NULL;
91
92 cvar_t cl_netport = {0, "cl_port", "0"};
93 cvar_t sv_netport = {0, "port", "26000"};
94 cvar_t net_address = {0, "net_address", "0.0.0.0"};
95 //cvar_t net_netaddress_ipv6 = {0, "net_address_ipv6", "[0:0:0:0:0:0:0:0]"};
96
97 int NetConn_Read(lhnetsocket_t *mysocket, void *data, int maxlength, lhnetaddress_t *peeraddress)
98 {
99         int length = LHNET_Read(mysocket, data, maxlength, peeraddress);
100         int i;
101         if (cl_netpacketloss_receive.integer)
102                 for (i = 0;i < cl_numsockets;i++)
103                         if (cl_sockets[i] == mysocket && (rand() % 100) < cl_netpacketloss_receive.integer)
104                                 return 0;
105         if (sv_netpacketloss_receive.integer)
106                 for (i = 0;i < cl_numsockets;i++)
107                         if (sv_sockets[i] == mysocket && (rand() % 100) < sv_netpacketloss_receive.integer)
108                                 return 0;
109         if (developer_networking.integer && length != 0)
110         {
111                 char addressstring[128], addressstring2[128];
112                 LHNETADDRESS_ToString(LHNET_AddressFromSocket(mysocket), addressstring, sizeof(addressstring), true);
113                 if (length > 0)
114                 {
115                         LHNETADDRESS_ToString(peeraddress, addressstring2, sizeof(addressstring2), true);
116                         Con_Printf("LHNET_Read(%p (%s), %p, %i, %p) = %i from %s:\n", mysocket, addressstring, data, maxlength, peeraddress, length, addressstring2);
117                         Com_HexDumpToConsole(data, length);
118                 }
119                 else
120                         Con_Printf("LHNET_Read(%p (%s), %p, %i, %p) = %i\n", mysocket, addressstring, data, maxlength, peeraddress, length);
121         }
122         return length;
123 }
124
125 int NetConn_Write(lhnetsocket_t *mysocket, const void *data, int length, const lhnetaddress_t *peeraddress)
126 {
127         int ret;
128         int i;
129         if (cl_netpacketloss_send.integer)
130                 for (i = 0;i < cl_numsockets;i++)
131                         if (cl_sockets[i] == mysocket && (rand() % 100) < cl_netpacketloss_send.integer)
132                                 return length;
133         if (sv_netpacketloss_send.integer)
134                 for (i = 0;i < cl_numsockets;i++)
135                         if (sv_sockets[i] == mysocket && (rand() % 100) < sv_netpacketloss_send.integer)
136                                 return length;
137         ret = LHNET_Write(mysocket, data, length, peeraddress);
138         if (developer_networking.integer)
139         {
140                 char addressstring[128], addressstring2[128];
141                 LHNETADDRESS_ToString(LHNET_AddressFromSocket(mysocket), addressstring, sizeof(addressstring), true);
142                 LHNETADDRESS_ToString(peeraddress, addressstring2, sizeof(addressstring2), true);
143                 Con_Printf("LHNET_Write(%p (%s), %p, %i, %p (%s)) = %i%s\n", mysocket, addressstring, data, length, peeraddress, addressstring2, length, ret == length ? "" : " (ERROR)");
144                 Com_HexDumpToConsole(data, length);
145         }
146         return ret;
147 }
148
149 int NetConn_WriteString(lhnetsocket_t *mysocket, const char *string, const lhnetaddress_t *peeraddress)
150 {
151         // note this does not include the trailing NULL because we add that in the parser
152         return NetConn_Write(mysocket, string, strlen(string), peeraddress);
153 }
154
155 int NetConn_SendReliableMessage(netconn_t *conn, sizebuf_t *data)
156 {
157         unsigned int packetLen;
158         unsigned int dataLen;
159         unsigned int eom;
160         unsigned int *header;
161
162 //#ifdef DEBUG
163         if (data->cursize == 0)
164                 Sys_Error("Datagram_SendMessage: zero length message\n");
165
166         if (data->cursize > (int)sizeof(conn->sendMessage))
167                 Sys_Error("Datagram_SendMessage: message too big (%u > %u)\n", data->cursize, sizeof(conn->sendMessage));
168
169         if (conn->canSend == false)
170                 Sys_Error("SendMessage: called with canSend == false\n");
171 //#endif
172
173         memcpy(conn->sendMessage, data->data, data->cursize);
174         conn->sendMessageLength = data->cursize;
175
176         if (conn->sendMessageLength <= MAX_PACKETFRAGMENT)
177         {
178                 dataLen = conn->sendMessageLength;
179                 eom = NETFLAG_EOM;
180         }
181         else
182         {
183                 dataLen = MAX_PACKETFRAGMENT;
184                 eom = 0;
185         }
186
187         packetLen = NET_HEADERSIZE + dataLen;
188
189         header = (void *)sendbuffer;
190         header[0] = BigLong(packetLen | (NETFLAG_DATA | eom));
191         header[1] = BigLong(conn->sendSequence);
192         memcpy(sendbuffer + NET_HEADERSIZE, conn->sendMessage, dataLen);
193
194         conn->sendSequence++;
195         conn->canSend = false;
196
197         if (NetConn_Write(conn->mysocket, (void *)&sendbuffer, packetLen, &conn->peeraddress) != (int)packetLen)
198                 return -1;
199
200         conn->lastSendTime = realtime;
201         packetsSent++;
202         reliableMessagesSent++;
203         return 1;
204 }
205
206 static void NetConn_SendMessageNext(netconn_t *conn)
207 {
208         unsigned int packetLen;
209         unsigned int dataLen;
210         unsigned int eom;
211         unsigned int *header;
212
213         if (conn->sendMessageLength && !conn->canSend && conn->sendNext)
214         {
215                 if (conn->sendMessageLength <= MAX_PACKETFRAGMENT)
216                 {
217                         dataLen = conn->sendMessageLength;
218                         eom = NETFLAG_EOM;
219                 }
220                 else
221                 {
222                         dataLen = MAX_PACKETFRAGMENT;
223                         eom = 0;
224                 }
225
226                 packetLen = NET_HEADERSIZE + dataLen;
227
228                 header = (void *)sendbuffer;
229                 header[0] = BigLong(packetLen | (NETFLAG_DATA | eom));
230                 header[1] = BigLong(conn->sendSequence);
231                 memcpy(sendbuffer + NET_HEADERSIZE, conn->sendMessage, dataLen);
232
233                 conn->sendSequence++;
234                 conn->sendNext = false;
235
236                 if (NetConn_Write(conn->mysocket, (void *)&sendbuffer, packetLen, &conn->peeraddress) != (int)packetLen)
237                         return;
238
239                 conn->lastSendTime = realtime;
240                 packetsSent++;
241         }
242 }
243
244 static void NetConn_ReSendMessage(netconn_t *conn)
245 {
246         unsigned int packetLen;
247         unsigned int dataLen;
248         unsigned int eom;
249         unsigned int *header;
250
251         if (conn->sendMessageLength && !conn->canSend && (realtime - conn->lastSendTime) > 1.0)
252         {
253                 if (conn->sendMessageLength <= MAX_PACKETFRAGMENT)
254                 {
255                         dataLen = conn->sendMessageLength;
256                         eom = NETFLAG_EOM;
257                 }
258                 else
259                 {
260                         dataLen = MAX_PACKETFRAGMENT;
261                         eom = 0;
262                 }
263
264                 packetLen = NET_HEADERSIZE + dataLen;
265
266                 header = (void *)sendbuffer;
267                 header[0] = BigLong(packetLen | (NETFLAG_DATA | eom));
268                 header[1] = BigLong(conn->sendSequence - 1);
269                 memcpy(sendbuffer + NET_HEADERSIZE, conn->sendMessage, dataLen);
270
271                 conn->sendNext = false;
272
273                 if (NetConn_Write(conn->mysocket, (void *)&sendbuffer, packetLen, &conn->peeraddress) != (int)packetLen)
274                         return;
275
276                 conn->lastSendTime = realtime;
277                 packetsReSent++;
278         }
279 }
280
281 qboolean NetConn_CanSendMessage(netconn_t *conn)
282 {
283         return conn->canSend;
284 }
285
286 int NetConn_SendUnreliableMessage(netconn_t *conn, sizebuf_t *data)
287 {
288         int packetLen;
289         int *header;
290
291         packetLen = NET_HEADERSIZE + data->cursize;
292
293 //#ifdef DEBUG
294         if (data->cursize == 0)
295                 Sys_Error("Datagram_SendUnreliableMessage: zero length message\n");
296
297         if (packetLen > (int)sizeof(sendbuffer))
298                 Sys_Error("Datagram_SendUnreliableMessage: message too big %u\n", data->cursize);
299 //#endif
300
301         header = (void *)sendbuffer;
302         header[0] = BigLong(packetLen | NETFLAG_UNRELIABLE);
303         header[1] = BigLong(conn->unreliableSendSequence);
304         memcpy(sendbuffer + NET_HEADERSIZE, data->data, data->cursize);
305
306         conn->unreliableSendSequence++;
307
308         if (NetConn_Write(conn->mysocket, (void *)&sendbuffer, packetLen, &conn->peeraddress) != (int)packetLen)
309                 return -1;
310
311         packetsSent++;
312         unreliableMessagesSent++;
313         return 1;
314 }
315
316 void NetConn_CloseClientPorts(void)
317 {
318         for (;cl_numsockets > 0;cl_numsockets--)
319                 if (cl_sockets[cl_numsockets - 1])
320                         LHNET_CloseSocket(cl_sockets[cl_numsockets - 1]);
321 }
322
323 void NetConn_OpenClientPort(const char *addressstring, int defaultport)
324 {
325         lhnetaddress_t address;
326         lhnetsocket_t *s;
327         char addressstring2[1024];
328         if (LHNETADDRESS_FromString(&address, addressstring, defaultport))
329         {
330                 if ((s = LHNET_OpenSocket_Connectionless(&address)))
331                 {
332                         cl_sockets[cl_numsockets++] = s;
333                         LHNETADDRESS_ToString(LHNET_AddressFromSocket(s), addressstring2, sizeof(addressstring2), true);
334                         Con_Printf("Client opened a socket on address %s\n", addressstring2);
335                 }
336                 else
337                 {
338                         LHNETADDRESS_ToString(&address, addressstring2, sizeof(addressstring2), true);
339                         Con_Printf("Client failed to open a socket on address %s\n", addressstring2);
340                 }
341         }
342         else
343                 Con_Printf("Client unable to parse address %s\n", addressstring);
344 }
345
346 void NetConn_OpenClientPorts(void)
347 {
348         int port;
349         NetConn_CloseClientPorts();
350         port = bound(0, cl_netport.integer, 65535);
351         if (cl_netport.integer != port)
352                 Cvar_SetValueQuick(&cl_netport, port);
353         Con_Printf("Client using port %i\n", port);
354         NetConn_OpenClientPort("local:2", 0);
355         NetConn_OpenClientPort(net_address.string, port);
356         //NetConn_OpenClientPort(net_address_ipv6.string, port);
357 }
358
359 void NetConn_CloseServerPorts(void)
360 {
361         for (;sv_numsockets > 0;sv_numsockets--)
362                 if (sv_sockets[sv_numsockets - 1])
363                         LHNET_CloseSocket(sv_sockets[sv_numsockets - 1]);
364 }
365
366 void NetConn_OpenServerPort(const char *addressstring, int defaultport)
367 {
368         lhnetaddress_t address;
369         lhnetsocket_t *s;
370         char addressstring2[1024];
371         if (LHNETADDRESS_FromString(&address, addressstring, defaultport))
372         {
373                 if ((s = LHNET_OpenSocket_Connectionless(&address)))
374                 {
375                         sv_sockets[sv_numsockets++] = s;
376                         LHNETADDRESS_ToString(LHNET_AddressFromSocket(s), addressstring2, sizeof(addressstring2), true);
377                         Con_Printf("Server listening on address %s\n", addressstring2);
378                 }
379                 else
380                 {
381                         LHNETADDRESS_ToString(&address, addressstring2, sizeof(addressstring2), true);
382                         Con_Printf("Server failed to open socket on address %s\n", addressstring2);
383                 }
384         }
385         else
386                 Con_Printf("Server unable to parse address %s\n", addressstring);
387 }
388
389 void NetConn_OpenServerPorts(int opennetports)
390 {
391         int port;
392         NetConn_CloseServerPorts();
393         port = bound(0, sv_netport.integer, 65535);
394         if (port == 0)
395                 port = 26000;
396         Con_Printf("Server using port %i\n", port);
397         if (sv_netport.integer != port)
398                 Cvar_SetValueQuick(&sv_netport, port);
399         if (cls.state != ca_dedicated)
400                 NetConn_OpenServerPort("local:1", 0);
401         if (opennetports)
402         {
403                 NetConn_OpenServerPort(net_address.string, port);
404                 //NetConn_OpenServerPort(net_address_ipv6.string, port);
405         }
406         if (sv_numsockets == 0)
407                 Host_Error("NetConn_OpenServerPorts: unable to open any ports!\n");
408 }
409
410 lhnetsocket_t *NetConn_ChooseClientSocketForAddress(lhnetaddress_t *address)
411 {
412         int i, a = LHNETADDRESS_GetAddressType(address);
413         for (i = 0;i < cl_numsockets;i++)
414                 if (cl_sockets[i] && LHNETADDRESS_GetAddressType(LHNET_AddressFromSocket(cl_sockets[i])) == a)
415                         return cl_sockets[i];
416         return NULL;
417 }
418
419 lhnetsocket_t *NetConn_ChooseServerSocketForAddress(lhnetaddress_t *address)
420 {
421         int i, a = LHNETADDRESS_GetAddressType(address);
422         for (i = 0;i < sv_numsockets;i++)
423                 if (sv_sockets[i] && LHNETADDRESS_GetAddressType(LHNET_AddressFromSocket(sv_sockets[i])) == a)
424                         return sv_sockets[i];
425         return NULL;
426 }
427
428 netconn_t *NetConn_Open(lhnetsocket_t *mysocket, lhnetaddress_t *peeraddress)
429 {
430         netconn_t *conn;
431         conn = Mem_Alloc(netconn_mempool, sizeof(*conn));
432         conn->mysocket = mysocket;
433         conn->peeraddress = *peeraddress;
434         // updated by receiving "rate" command from client
435         conn->rate = NET_MINRATE;
436         // no limits for local player
437         if (LHNETADDRESS_GetAddressType(peeraddress) == LHNETADDRESSTYPE_LOOP)
438                 conn->rate = 1000000000;
439         conn->canSend = true;
440         conn->connecttime = realtime;
441         conn->lastMessageTime = realtime;
442         // LordHavoc: (inspired by ProQuake) use a short connect timeout to
443         // reduce effectiveness of connection request floods
444         conn->timeout = realtime + net_connecttimeout.value;
445         LHNETADDRESS_ToString(&conn->peeraddress, conn->address, sizeof(conn->address), true);
446         conn->next = netconn_list;
447         netconn_list = conn;
448         return conn;
449 }
450
451 void NetConn_Close(netconn_t *conn)
452 {
453         netconn_t *c;
454         // remove connection from list
455         if (conn == netconn_list)
456                 netconn_list = conn->next;
457         else
458         {
459                 for (c = netconn_list;c;c = c->next)
460                 {
461                         if (c->next == conn)
462                         {
463                                 c->next = conn->next;
464                                 break;
465                         }
466                 }
467                 // not found in list, we'll avoid crashing here...
468                 if (!c)
469                         return;
470         }
471         // free connection
472         Mem_Free(conn);
473 }
474
475 static int clientport = -1;
476 static int clientport2 = -1;
477 static int hostport = -1;
478 static void NetConn_UpdateServerStuff(void)
479 {
480         if (cls.state != ca_dedicated)
481         {
482                 if (clientport2 != cl_netport.integer)
483                 {
484                         clientport2 = cl_netport.integer;
485                         if (cls.state == ca_connected)
486                                 Con_Print("Changing \"cl_port\" will not take effect until you reconnect.\n");
487                 }
488                 if (cls.state == ca_disconnected && clientport != clientport2)
489                 {
490                         clientport = clientport2;
491                         NetConn_CloseClientPorts();
492                 }
493                 if (cl_numsockets == 0)
494                         NetConn_OpenClientPorts();
495         }
496
497         if (hostport != sv_netport.integer)
498         {
499                 hostport = sv_netport.integer;
500                 if (sv.active)
501                         Con_Print("Changing \"port\" will not take effect until \"map\" command is executed.\n");
502         }
503 }
504
505 int NetConn_ReceivedMessage(netconn_t *conn, qbyte *data, int length)
506 {
507         unsigned int count;
508         unsigned int flags;
509         unsigned int sequence;
510
511         if (length >= 8)
512         {
513                 length = BigLong(((int *)data)[0]);
514                 flags = length & ~NETFLAG_LENGTH_MASK;
515                 length &= NETFLAG_LENGTH_MASK;
516                 // control packets were already handled
517                 if (!(flags & NETFLAG_CTL))
518                 {
519                         sequence = BigLong(((int *)data)[1]);
520                         packetsReceived++;
521                         data += 8;
522                         length -= 8;
523                         if (flags & NETFLAG_UNRELIABLE)
524                         {
525                                 if (sequence >= conn->unreliableReceiveSequence)
526                                 {
527                                         if (sequence > conn->unreliableReceiveSequence)
528                                         {
529                                                 count = sequence - conn->unreliableReceiveSequence;
530                                                 droppedDatagrams += count;
531                                                 Con_DPrintf("Dropped %u datagram(s)\n", count);
532                                         }
533                                         conn->unreliableReceiveSequence = sequence + 1;
534                                         conn->lastMessageTime = realtime;
535                                         conn->timeout = realtime + net_messagetimeout.value;
536                                         unreliableMessagesReceived++;
537                                         if (length > 0)
538                                         {
539                                                 SZ_Clear(&net_message);
540                                                 SZ_Write(&net_message, data, length);
541                                                 MSG_BeginReading();
542                                                 return 2;
543                                         }
544                                 }
545                                 else
546                                         Con_DPrint("Got a stale datagram\n");
547                                 return 1;
548                         }
549                         else if (flags & NETFLAG_ACK)
550                         {
551                                 if (sequence == (conn->sendSequence - 1))
552                                 {
553                                         if (sequence == conn->ackSequence)
554                                         {
555                                                 conn->ackSequence++;
556                                                 if (conn->ackSequence != conn->sendSequence)
557                                                         Con_DPrint("ack sequencing error\n");
558                                                 conn->lastMessageTime = realtime;
559                                                 conn->timeout = realtime + net_messagetimeout.value;
560                                                 conn->sendMessageLength -= MAX_PACKETFRAGMENT;
561                                                 if (conn->sendMessageLength > 0)
562                                                 {
563                                                         memcpy(conn->sendMessage, conn->sendMessage+MAX_PACKETFRAGMENT, conn->sendMessageLength);
564                                                         conn->sendNext = true;
565                                                         NetConn_SendMessageNext(conn);
566                                                 }
567                                                 else
568                                                 {
569                                                         conn->sendMessageLength = 0;
570                                                         conn->canSend = true;
571                                                 }
572                                         }
573                                         else
574                                                 Con_DPrint("Duplicate ACK received\n");
575                                 }
576                                 else
577                                         Con_DPrint("Stale ACK received\n");
578                                 return 1;
579                         }
580                         else if (flags & NETFLAG_DATA)
581                         {
582                                 unsigned int temppacket[2];
583                                 temppacket[0] = BigLong(8 | NETFLAG_ACK);
584                                 temppacket[1] = BigLong(sequence);
585                                 NetConn_Write(conn->mysocket, (qbyte *)temppacket, 8, &conn->peeraddress);
586                                 if (sequence == conn->receiveSequence)
587                                 {
588                                         conn->lastMessageTime = realtime;
589                                         conn->timeout = realtime + net_messagetimeout.value;
590                                         conn->receiveSequence++;
591                                         memcpy(conn->receiveMessage + conn->receiveMessageLength, data, length);
592                                         conn->receiveMessageLength += length;
593                                         if (flags & NETFLAG_EOM)
594                                         {
595                                                 reliableMessagesReceived++;
596                                                 length = conn->receiveMessageLength;
597                                                 conn->receiveMessageLength = 0;
598                                                 if (length > 0)
599                                                 {
600                                                         SZ_Clear(&net_message);
601                                                         SZ_Write(&net_message, conn->receiveMessage, length);
602                                                         MSG_BeginReading();
603                                                         return 2;
604                                                 }
605                                         }
606                                 }
607                                 else
608                                         receivedDuplicateCount++;
609                                 return 1;
610                         }
611                 }
612         }
613         return 0;
614 }
615
616 void NetConn_ConnectionEstablished(lhnetsocket_t *mysocket, lhnetaddress_t *peeraddress)
617 {
618         cls.netcon = NetConn_Open(mysocket, peeraddress);
619         Con_Printf("Connection accepted to %s\n", cls.netcon->address);
620         key_dest = key_game;
621         m_state = m_none;
622         cls.connect_trying = false;
623         cls.demonum = -1;                       // not in the demo loop now
624         cls.state = ca_connected;
625         cls.signon = 0;                         // need all the signon messages before playing
626         CL_ClearState();
627         Host_Reconnect_f();
628 }
629
630 int NetConn_IsLocalGame(void)
631 {
632         if (cls.state == ca_connected && sv.active && cl.maxclients == 1)
633                 return true;
634         return false;
635 }
636
637 static struct
638 {
639         double senttime;
640         lhnetaddress_t peeraddress;
641 }
642 pingcache[HOSTCACHESIZE];
643
644 int NetConn_ClientParsePacket(lhnetsocket_t *mysocket, qbyte *data, int length, lhnetaddress_t *peeraddress)
645 {
646         int ret, c, control;
647         lhnetaddress_t svaddress;
648         const char *s;
649         char *string, addressstring2[128], cname[128], ipstring[32];
650         char stringbuf[16384];
651
652         if (length >= 5 && data[0] == 255 && data[1] == 255 && data[2] == 255 && data[3] == 255)
653         {
654                 // received a command string - strip off the packaging and put it
655                 // into our string buffer with NULL termination
656                 data += 4;
657                 length -= 4;
658                 length = min(length, (int)sizeof(stringbuf) - 1);
659                 memcpy(stringbuf, data, length);
660                 stringbuf[length] = 0;
661                 string = stringbuf;
662
663                 if (developer.integer)
664                 {
665                         LHNETADDRESS_ToString(peeraddress, addressstring2, sizeof(addressstring2), true);
666                         Con_Printf("NetConn_ClientParsePacket: %s sent us a command:\n", addressstring2);
667                         Com_HexDumpToConsole(data, length);
668                 }
669
670                 if (length > 10 && !memcmp(string, "challenge ", 10) && cls.connect_trying)
671                 {
672                         LHNETADDRESS_ToString(peeraddress, addressstring2, sizeof(addressstring2), true);
673                         Con_Printf("\"%s\" received, sending connect request back to %s\n", string, addressstring2);
674                         NetConn_WriteString(mysocket, va("\377\377\377\377connect\\protocol\\darkplaces 3\\challenge\\%s", string + 10), peeraddress);
675                         return true;
676                 }
677                 if (length == 6 && !memcmp(string, "accept", 6) && cls.connect_trying)
678                 {
679                         NetConn_ConnectionEstablished(mysocket, peeraddress);
680                         return true;
681                 }
682                 if (length > 7 && !memcmp(string, "reject ", 7) && cls.connect_trying)
683                 {
684                         cls.connect_trying = false;
685                         string += 7;
686                         length = max(length - 7, (int)sizeof(m_return_reason) - 1);
687                         memcpy(m_return_reason, string, length);
688                         m_return_reason[length] = 0;
689                         Con_Printf("%s\n", m_return_reason);
690                         return true;
691                 }
692                 if (length >= 13 && !memcmp(string, "infoResponse\x0A", 13))
693                 {
694                         int i, j, c, n, users, maxusers;
695                         char game[32], mod[32], map[32], name[128];
696                         double pingtime;
697                         hostcache_t temp;
698                         string += 13;
699                         // hostcache only uses text addresses
700                         LHNETADDRESS_ToString(peeraddress, cname, sizeof(cname), true);
701                         if ((s = SearchInfostring(string, "gamename"     )) != NULL) strlcpy(game, s, sizeof (game));else game[0] = 0;
702                         if ((s = SearchInfostring(string, "modname"      )) != NULL) strlcpy(mod , s, sizeof (mod ));else mod[0]  = 0;
703                         if ((s = SearchInfostring(string, "mapname"      )) != NULL) strlcpy(map , s, sizeof (map ));else map[0]  = 0;
704                         if ((s = SearchInfostring(string, "hostname"     )) != NULL) strlcpy(name, s, sizeof (name));else name[0] = 0;
705                         if ((s = SearchInfostring(string, "protocol"     )) != NULL) c = atoi(s);else c = -1;
706                         if ((s = SearchInfostring(string, "clients"      )) != NULL) users = atoi(s);else users = 0;
707                         if ((s = SearchInfostring(string, "sv_maxclients")) != NULL) maxusers = atoi(s);else maxusers = 0;
708                         // search the cache for this server and update it
709                         for (n = 0; n < hostCacheCount; n++)
710                         {
711                                 if (!strcmp(cname, hostcache[n].cname))
712                                 {
713                                         if (hostcache[n].ping == 100000)
714                                                 serverreplycount++;
715                                         pingtime = (int)((realtime - hostcache[n].querytime) * 1000.0);
716                                         pingtime = bound(0, pingtime, 9999);
717                                         // update the ping
718                                         hostcache[n].ping = pingtime;
719                                         // build description strings for the things users care about
720                                         snprintf(hostcache[n].line1, sizeof(hostcache[n].line1), "%5d%c%3u/%3u %-65.65s", (int)pingtime, c != NET_PROTOCOL_VERSION ? '*' : ' ', users, maxusers, name);
721                                         snprintf(hostcache[n].line2, sizeof(hostcache[n].line2), "%-21.21s %-19.19s %-17.17s %-20.20s", cname, game, mod, map);
722                                         // if ping is especially high, display it as such
723                                         if (pingtime >= 300)
724                                         {
725                                                 // orange numbers (lower block)
726                                                 for (i = 0;i < 5;i++)
727                                                         if (hostcache[n].line1[i] != ' ')
728                                                                 hostcache[n].line1[i] += 128;
729                                         }
730                                         else if (pingtime >= 200)
731                                         {
732                                                 // yellow numbers (in upper block)
733                                                 for (i = 0;i < 5;i++)
734                                                         if (hostcache[n].line1[i] != ' ')
735                                                                 hostcache[n].line1[i] -= 30;
736                                         }
737                                         // if not in the slist menu we should print the server to console
738                                         if (m_state != m_slist)
739                                                 Con_Printf("%s\n%s\n", hostcache[n].line1, hostcache[n].line2);
740                                         // and finally, re-sort the list
741                                         for (i = 0;i < hostCacheCount;i++)
742                                         {
743                                                 for (j = i + 1;j < hostCacheCount;j++)
744                                                 {
745                                                         //if (strcmp(hostcache[j].name, hostcache[i].name) < 0)
746                                                         if (hostcache[i].ping > hostcache[j].ping)
747                                                         {
748                                                                 memcpy(&temp, &hostcache[j], sizeof(hostcache_t));
749                                                                 memcpy(&hostcache[j], &hostcache[i], sizeof(hostcache_t));
750                                                                 memcpy(&hostcache[i], &temp, sizeof(hostcache_t));
751                                                         }
752                                                 }
753                                         }
754                                         break;
755                                 }
756                         }
757                         return true;
758                 }
759                 if (!strncmp(string, "getserversResponse\\", 19) && hostCacheCount < HOSTCACHESIZE)
760                 {
761                         int i, n, j;
762                         hostcache_t temp;
763                         // Extract the IP addresses
764                         data += 18;
765                         length -= 18;
766                         masterreplycount++;
767                         if (m_state != m_slist)
768                                 Con_Print("received server list...\n");
769                         while (length >= 7 && data[0] == '\\' && (data[1] != 0xFF || data[2] != 0xFF || data[3] != 0xFF || data[4] != 0xFF) && data[5] * 256 + data[6] != 0)
770                         {
771                                 snprintf (ipstring, sizeof (ipstring), "%u.%u.%u.%u:%u", data[1], data[2], data[3], data[4], (data[5] << 8) | data[6]);
772                                 if (developer.integer)
773                                         Con_Printf("Requesting info from server %s\n", ipstring);
774                                 LHNETADDRESS_FromString(&svaddress, ipstring, 0);
775                                 NetConn_WriteString(mysocket, "\377\377\377\377getinfo", &svaddress);
776
777
778                                 // add to slist (hostCache)
779                                 // search the cache for this server
780                                 for (n = 0; n < hostCacheCount; n++)
781                                         if (!strcmp(ipstring, hostcache[n].cname))
782                                                 break;
783                                 // add it or update it
784                                 if (n == hostCacheCount)
785                                 {
786                                         // if cache is full replace highest ping server (the list is
787                                         // kept sorted so this is always the last, and if this server
788                                         // is good it will be sorted into an early part of the list)
789                                         if (hostCacheCount >= HOSTCACHESIZE)
790                                                 n = hostCacheCount - 1;
791                                         else
792                                         {
793                                                 serverquerycount++;
794                                                 hostCacheCount++;
795                                         }
796                                 }
797                                 memset(&hostcache[n], 0, sizeof(hostcache[n]));
798                                 // store the data the engine cares about (address and ping)
799                                 strlcpy (hostcache[n].cname, ipstring, sizeof (hostcache[n].cname));
800                                 hostcache[n].ping = 100000;
801                                 hostcache[n].querytime = realtime;
802                                 // build description strings for the things users care about
803                                 strlcpy (hostcache[n].line1, "?", sizeof (hostcache[n].line1));
804                                 strlcpy (hostcache[n].line2, ipstring, sizeof (hostcache[n].line2));
805                                 // if not in the slist menu we should print the server to console
806                                 if (m_state != m_slist)
807                                         Con_Printf("querying %s\n", ipstring);
808                                 // and finally, re-sort the list
809                                 for (i = 0;i < hostCacheCount;i++)
810                                 {
811                                         for (j = i + 1;j < hostCacheCount;j++)
812                                         {
813                                                 //if (strcmp(hostcache[j].name, hostcache[i].name) < 0)
814                                                 if (hostcache[i].ping > hostcache[j].ping)
815                                                 {
816                                                         memcpy(&temp, &hostcache[j], sizeof(hostcache_t));
817                                                         memcpy(&hostcache[j], &hostcache[i], sizeof(hostcache_t));
818                                                         memcpy(&hostcache[i], &temp, sizeof(hostcache_t));
819                                                 }
820                                         }
821                                 }
822
823
824                                 // move on to next address in packet
825                                 data += 7;
826                                 length -= 7;
827                         }
828                         return true;
829                 }
830                 /*
831                 if (!strncmp(string, "ping", 4))
832                 {
833                         if (developer.integer)
834                                 Con_Printf("Received ping from %s, sending ack\n", UDP_AddrToString(readaddr));
835                         NetConn_WriteString(mysocket, "\377\377\377\377ack", peeraddress);
836                         return true;
837                 }
838                 if (!strncmp(string, "ack", 3))
839                         return true;
840                 */
841                 // we may not have liked the packet, but it was a command packet, so
842                 // we're done processing this packet now
843                 return true;
844         }
845         // netquake control packets, supported for compatibility only
846         if (length >= 5 && (control = BigLong(*((int *)data))) && (control & (~NETFLAG_LENGTH_MASK)) == (int)NETFLAG_CTL && (control & NETFLAG_LENGTH_MASK) == length)
847         {
848                 c = data[4];
849                 data += 5;
850                 length -= 5;
851                 LHNETADDRESS_ToString(peeraddress, addressstring2, sizeof(addressstring2), true);
852                 switch (c)
853                 {
854                 case CCREP_ACCEPT:
855                         if (developer.integer)
856                                 Con_Printf("Datagram_ParseConnectionless: received CCREP_ACCEPT from %s.\n", addressstring2);
857                         if (cls.connect_trying)
858                         {
859                                 lhnetaddress_t clientportaddress;
860                                 clientportaddress = *peeraddress;
861                                 if (length >= 4)
862                                 {
863                                         unsigned int port = (data[0] << 0) | (data[1] << 8) | (data[2] << 16) | (data[3] << 24);
864                                         data += 4;
865                                         length -= 4;
866                                         LHNETADDRESS_SetPort(&clientportaddress, port);
867                                 }
868                                 NetConn_ConnectionEstablished(mysocket, &clientportaddress);
869                         }
870                         break;
871                 case CCREP_REJECT:
872                         if (developer.integer)
873                                 Con_Printf("Datagram_ParseConnectionless: received CCREP_REJECT from %s.\n", addressstring2);
874                         Con_Printf("%s\n", data);
875                         strlcpy (m_return_reason, data, sizeof (m_return_reason));
876                         break;
877 #if 0
878                 case CCREP_SERVER_INFO:
879                         if (developer.integer)
880                                 Con_Printf("Datagram_ParseConnectionless: received CCREP_SERVER_INFO from %s.\n", addressstring2);
881                         if (cls.state != ca_dedicated)
882                         {
883                                 // LordHavoc: because the UDP driver reports 0.0.0.0:26000 as the address
884                                 // string we just ignore it and keep the real address
885                                 MSG_ReadString();
886                                 // hostcache only uses text addresses
887                                 cname = UDP_AddrToString(readaddr);
888                                 // search the cache for this server
889                                 for (n = 0; n < hostCacheCount; n++)
890                                         if (!strcmp(cname, hostcache[n].cname))
891                                                 break;
892                                 // add it
893                                 if (n == hostCacheCount && hostCacheCount < HOSTCACHESIZE)
894                                 {
895                                         hostCacheCount++;
896                                         memset(&hostcache[n], 0, sizeof(hostcache[n]));
897                                         strlcpy (hostcache[n].name, MSG_ReadString(), sizeof (hostcache[n].name));
898                                         strlcpy (hostcache[n].map, MSG_ReadString(), sizeof (hostcache[n].map));
899                                         hostcache[n].users = MSG_ReadByte();
900                                         hostcache[n].maxusers = MSG_ReadByte();
901                                         c = MSG_ReadByte();
902                                         if (c != NET_PROTOCOL_VERSION)
903                                         {
904                                                 strlcpy (hostcache[n].cname, hostcache[n].name, sizeof (hostcache[n].cname));
905                                                 strcpy(hostcache[n].name, "*");
906                                                 strlcat (hostcache[n].name, hostcache[n].cname, sizeof(hostcache[n].name));
907                                         }
908                                         strlcpy (hostcache[n].cname, cname, sizeof (hostcache[n].cname));
909                                 }
910                         }
911                         break;
912                 case CCREP_PLAYER_INFO:
913                         // we got a CCREP_PLAYER_INFO??
914                         //if (developer.integer)
915                                 Con_Printf("Datagram_ParseConnectionless: received CCREP_PLAYER_INFO from %s.\n", addressstring2);
916                         break;
917                 case CCREP_RULE_INFO:
918                         // we got a CCREP_RULE_INFO??
919                         //if (developer.integer)
920                                 Con_Printf("Datagram_ParseConnectionless: received CCREP_RULE_INFO from %s.\n", addressstring2);
921                         break;
922 #endif
923                 default:
924                         break;
925                 }
926                 // we may not have liked the packet, but it was a valid control
927                 // packet, so we're done processing this packet now
928                 return true;
929         }
930         ret = 0;
931         if (length >= (int)NET_HEADERSIZE && cls.netcon && mysocket == cls.netcon->mysocket && !LHNETADDRESS_Compare(&cls.netcon->peeraddress, peeraddress) && (ret = NetConn_ReceivedMessage(cls.netcon, data, length)) == 2)
932                 CL_ParseServerMessage();
933         return ret;
934 }
935
936 void NetConn_ClientFrame(void)
937 {
938         int i, length;
939         lhnetaddress_t peeraddress;
940         netconn_t *conn;
941         NetConn_UpdateServerStuff();
942         if (cls.connect_trying && cls.connect_nextsendtime < realtime)
943         {
944                 if (cls.connect_remainingtries == 0)
945                 {
946                         cls.connect_trying = false;
947                         if (m_state == m_slist)
948                                 strcpy (m_return_reason, "Connect: Failed");
949                         else
950                                 Con_Print("Connect failed\n");
951                         return;
952                 }
953                 if (cls.connect_nextsendtime)
954                 {
955                         if (m_state == m_slist)
956                                 strcpy (m_return_reason, "Connect: Still trying");
957                         else
958                                 Con_Print("Still trying...\n");
959                 }
960                 else
961                 {
962                         if (m_state == m_slist)
963                                 strcpy (m_return_reason, "Connect: Trying");
964                         else
965                                 Con_Print("Trying...\n");
966                 }
967                 cls.connect_nextsendtime = realtime + 1;
968                 cls.connect_remainingtries--;
969                 // try challenge first (newer server)
970                 NetConn_WriteString(cls.connect_mysocket, "\377\377\377\377getchallenge", &cls.connect_address);
971                 // then try netquake as a fallback (old server, or netquake)
972                 SZ_Clear(&net_message);
973                 // save space for the header, filled in later
974                 MSG_WriteLong(&net_message, 0);
975                 MSG_WriteByte(&net_message, CCREQ_CONNECT);
976                 MSG_WriteString(&net_message, "QUAKE");
977                 MSG_WriteByte(&net_message, NET_PROTOCOL_VERSION);
978                 *((int *)net_message.data) = BigLong(NETFLAG_CTL | (net_message.cursize & NETFLAG_LENGTH_MASK));
979                 NetConn_Write(cls.connect_mysocket, net_message.data, net_message.cursize, &cls.connect_address);
980                 SZ_Clear(&net_message);
981         }
982         for (i = 0;i < cl_numsockets;i++)
983                 while (cl_sockets[i] && (length = NetConn_Read(cl_sockets[i], readbuffer, sizeof(readbuffer), &peeraddress)) > 0)
984                         NetConn_ClientParsePacket(cl_sockets[i], readbuffer, length, &peeraddress);
985         if (cls.netcon && realtime > cls.netcon->timeout)
986         {
987                 Con_Print("Connection timed out\n");
988                 CL_Disconnect();
989                 Host_ShutdownServer (false);
990         }
991         for (conn = netconn_list;conn;conn = conn->next)
992                 NetConn_ReSendMessage(conn);
993 }
994
995 #define MAX_CHALLENGES 128
996 struct
997 {
998         lhnetaddress_t address;
999         double time;
1000         char string[12];
1001 }
1002 challenge[MAX_CHALLENGES];
1003
1004 static void NetConn_BuildChallengeString(char *buffer, int bufferlength)
1005 {
1006         int i;
1007         char c;
1008         for (i = 0;i < bufferlength - 1;i++)
1009         {
1010                 do
1011                 {
1012                         c = rand () % (127 - 33) + 33;
1013                 } while (c == '\\' || c == ';' || c == '"' || c == '%' || c == '/');
1014                 buffer[i] = c;
1015         }
1016         buffer[i] = 0;
1017 }
1018
1019 extern void SV_ConnectClient(int clientnum, netconn_t *netconnection);
1020 int NetConn_ServerParsePacket(lhnetsocket_t *mysocket, qbyte *data, int length, lhnetaddress_t *peeraddress)
1021 {
1022         int i, n, ret, clientnum, responselength, best;
1023         double besttime;
1024         client_t *client;
1025         netconn_t *conn;
1026         char *s, *string, response[512], addressstring2[128], stringbuf[16384];
1027
1028         if (sv.active)
1029         {
1030                 if (length >= 5 && data[0] == 255 && data[1] == 255 && data[2] == 255 && data[3] == 255)
1031                 {
1032                         // received a command string - strip off the packaging and put it
1033                         // into our string buffer with NULL termination
1034                         data += 4;
1035                         length -= 4;
1036                         length = min(length, (int)sizeof(stringbuf) - 1);
1037                         memcpy(stringbuf, data, length);
1038                         stringbuf[length] = 0;
1039                         string = stringbuf;
1040
1041                         if (developer.integer)
1042                         {
1043                                 LHNETADDRESS_ToString(peeraddress, addressstring2, sizeof(addressstring2), true);
1044                                 Con_Printf("NetConn_ServerParsePacket: %s sent us a command:\n", addressstring2);
1045                                 Com_HexDumpToConsole(data, length);
1046                         }
1047
1048                         if (length >= 12 && !memcmp(string, "getchallenge", 12))
1049                         {
1050                                 for (i = 0, best = 0, besttime = realtime;i < MAX_CHALLENGES;i++)
1051                                 {
1052                                         if (!LHNETADDRESS_Compare(peeraddress, &challenge[i].address))
1053                                                 break;
1054                                         if (besttime > challenge[i].time)
1055                                                 besttime = challenge[best = i].time;
1056                                 }
1057                                 // if we did not find an exact match, choose the oldest and
1058                                 // update address and string
1059                                 if (i == MAX_CHALLENGES)
1060                                 {
1061                                         i = best;
1062                                         challenge[i].address = *peeraddress;
1063                                         NetConn_BuildChallengeString(challenge[i].string, sizeof(challenge[i].string));
1064                                 }
1065                                 challenge[i].time = realtime;
1066                                 // send the challenge
1067                                 NetConn_WriteString(mysocket, va("\377\377\377\377challenge %s", challenge[i].string), peeraddress);
1068                                 return true;
1069                         }
1070                         if (length > 8 && !memcmp(string, "connect\\", 8))
1071                         {
1072                                 string += 7;
1073                                 length -= 7;
1074                                 if ((s = SearchInfostring(string, "challenge")))
1075                                 {
1076                                         // validate the challenge
1077                                         for (i = 0;i < MAX_CHALLENGES;i++)
1078                                                 if (!LHNETADDRESS_Compare(peeraddress, &challenge[i].address) && !strcmp(challenge[i].string, s))
1079                                                         break;
1080                                         if (i < MAX_CHALLENGES)
1081                                         {
1082                                                 // check engine protocol
1083                                                 if (strcmp(SearchInfostring(string, "protocol"), "darkplaces 3"))
1084                                                 {
1085                                                         if (developer.integer)
1086                                                                 Con_Printf("Datagram_ParseConnectionless: sending \"reject Wrong game protocol.\" to %s.\n", addressstring2);
1087                                                         NetConn_WriteString(mysocket, "\377\377\377\377reject Wrong game protocol.", peeraddress);
1088                                                 }
1089                                                 else
1090                                                 {
1091                                                         // see if this is a duplicate connection request
1092                                                         for (clientnum = 0, client = svs.clients;clientnum < svs.maxclients;clientnum++, client++)
1093                                                                 if (client->netconnection && LHNETADDRESS_Compare(peeraddress, &client->netconnection->peeraddress) == 0)
1094                                                                         break;
1095                                                         if (clientnum < svs.maxclients)
1096                                                         {
1097                                                                 // duplicate connection request
1098                                                                 if (realtime - client->netconnection->connecttime < 2.0)
1099                                                                 {
1100                                                                         // client is still trying to connect,
1101                                                                         // so we send a duplicate reply
1102                                                                         if (developer.integer)
1103                                                                                 Con_Printf("Datagram_ParseConnectionless: sending duplicate accept to %s.\n", addressstring2);
1104                                                                         NetConn_WriteString(mysocket, "\377\377\377\377accept", peeraddress);
1105                                                                 }
1106                                                                 // only kick if old connection seems dead
1107                                                                 if (realtime - client->netconnection->lastMessageTime >= net_messagerejointimeout.value)
1108                                                                 {
1109                                                                         // kick off connection and await retry
1110                                                                         client->deadsocket = true;
1111                                                                 }
1112                                                         }
1113                                                         else
1114                                                         {
1115                                                                 // this is a new client, find a slot
1116                                                                 for (clientnum = 0, client = svs.clients;clientnum < svs.maxclients;clientnum++, client++)
1117                                                                         if (!client->active)
1118                                                                                 break;
1119                                                                 if (clientnum < svs.maxclients)
1120                                                                 {
1121                                                                         // prepare the client struct
1122                                                                         if ((conn = NetConn_Open(mysocket, peeraddress)))
1123                                                                         {
1124                                                                                 // allocated connection
1125                                                                                 LHNETADDRESS_ToString(peeraddress, conn->address, sizeof(conn->address), true);
1126                                                                                 if (developer.integer)
1127                                                                                         Con_Printf("Datagram_ParseConnectionless: sending \"accept\" to %s.\n", conn->address);
1128                                                                                 NetConn_WriteString(mysocket, "\377\377\377\377accept", peeraddress);
1129                                                                                 // now set up the client
1130                                                                                 SV_ConnectClient(clientnum, conn);
1131                                                                                 NetConn_Heartbeat(1);
1132                                                                         }
1133                                                                 }
1134                                                                 else
1135                                                                 {
1136                                                                         // server is full
1137                                                                         if (developer.integer)
1138                                                                                 Con_Printf("Datagram_ParseConnectionless: sending \"reject Server is full.\" to %s.\n", addressstring2);
1139                                                                         NetConn_WriteString(mysocket, "\377\377\377\377reject Server is full.", peeraddress);
1140                                                                 }
1141                                                         }
1142                                                 }
1143                                         }
1144                                 }
1145                                 return true;
1146                         }
1147                         if (length >= 7 && !memcmp(string, "getinfo", 7))
1148                         {
1149                                 const char *challenge = NULL;
1150                                 // If there was a challenge in the getinfo message
1151                                 if (length > 8 && string[7] == ' ')
1152                                         challenge = string + 8;
1153                                 for (i = 0, n = 0;i < svs.maxclients;i++)
1154                                         if (svs.clients[i].active)
1155                                                 n++;
1156                                 responselength = snprintf(response, sizeof(response), "\377\377\377\377infoResponse\x0A"
1157                                                         "\\gamename\\%s\\modname\\%s\\sv_maxclients\\%d"
1158                                                         "\\clients\\%d\\mapname\\%s\\hostname\\%s\\protocol\\%d%s%s",
1159                                                         gamename, com_modname, svs.maxclients, n,
1160                                                         sv.name, hostname.string, NET_PROTOCOL_VERSION, challenge ? "\\challenge\\" : "", challenge ? challenge : "");
1161                                 // does it fit in the buffer?
1162                                 if (responselength < (int)sizeof(response))
1163                                 {
1164                                         if (developer.integer)
1165                                                 Con_Printf("Sending reply to master %s - %s\n", addressstring2, response);
1166                                         NetConn_WriteString(mysocket, response, peeraddress);
1167                                 }
1168                                 return true;
1169                         }
1170                         /*
1171                         if (!strncmp(string, "ping", 4))
1172                         {
1173                                 if (developer.integer)
1174                                         Con_Printf("Received ping from %s, sending ack\n", UDP_AddrToString(readaddr));
1175                                 NetConn_WriteString(mysocket, "\377\377\377\377ack", peeraddress);
1176                                 return true;
1177                         }
1178                         if (!strncmp(string, "ack", 3))
1179                                 return true;
1180                         */
1181                         // we may not have liked the packet, but it was a command packet, so
1182                         // we're done processing this packet now
1183                         return true;
1184                 }
1185                 // LordHavoc: disabled netquake control packet support in server
1186 #if 0
1187                 {
1188                         int c, control;
1189                         // netquake control packets, supported for compatibility only
1190                         if (length >= 5 && (control = BigLong(*((int *)data))) && (control & (~NETFLAG_LENGTH_MASK)) == (int)NETFLAG_CTL && (control & NETFLAG_LENGTH_MASK) == length)
1191                         {
1192                                 c = data[4];
1193                                 data += 5;
1194                                 length -= 5;
1195                                 LHNETADDRESS_ToString(peeraddress, addressstring2, sizeof(addressstring2), true);
1196                                 switch (c)
1197                                 {
1198                                 case CCREQ_CONNECT:
1199                                         //if (developer.integer)
1200                                                 Con_Printf("Datagram_ParseConnectionless: received CCREQ_CONNECT from %s.\n", addressstring2);
1201                                         if (length >= (int)strlen("QUAKE") + 1 + 1)
1202                                         {
1203                                                 if (memcmp(data, "QUAKE", strlen("QUAKE") + 1) != 0 || (int)data[strlen("QUAKE") + 1] != NET_PROTOCOL_VERSION)
1204                                                 {
1205                                                         if (developer.integer)
1206                                                                 Con_Printf("Datagram_ParseConnectionless: sending CCREP_REJECT \"Incompatible version.\" to %s.\n", addressstring2);
1207                                                         SZ_Clear(&net_message);
1208                                                         // save space for the header, filled in later
1209                                                         MSG_WriteLong(&net_message, 0);
1210                                                         MSG_WriteByte(&net_message, CCREP_REJECT);
1211                                                         MSG_WriteString(&net_message, "Incompatible version.\n");
1212                                                         *((int *)net_message.data) = BigLong(NETFLAG_CTL | (net_message.cursize & NETFLAG_LENGTH_MASK));
1213                                                         NetConn_Write(mysocket, net_message.data, net_message.cursize, peeraddress);
1214                                                         SZ_Clear(&net_message);
1215                                                 }
1216                                                 else
1217                                                 {
1218                                                         // see if this is a duplicate connection request
1219                                                         for (clientnum = 0, client = svs.clients;clientnum < svs.maxclients;clientnum++, client++)
1220                                                                 if (client->netconnection && LHNETADDRESS_Compare(peeraddress, &client->netconnection->peeraddress) == 0)
1221                                                                         break;
1222                                                         if (clientnum < svs.maxclients)
1223                                                         {
1224                                                                 // duplicate connection request
1225                                                                 if (realtime - client->netconnection->connecttime < 2.0)
1226                                                                 {
1227                                                                         // client is still trying to connect,
1228                                                                         // so we send a duplicate reply
1229                                                                         if (developer.integer)
1230                                                                                 Con_Printf("Datagram_ParseConnectionless: sending duplicate CCREP_ACCEPT to %s.\n", addressstring2);
1231                                                                         SZ_Clear(&net_message);
1232                                                                         // save space for the header, filled in later
1233                                                                         MSG_WriteLong(&net_message, 0);
1234                                                                         MSG_WriteByte(&net_message, CCREP_ACCEPT);
1235                                                                         MSG_WriteLong(&net_message, LHNETADDRESS_GetPort(LHNET_AddressFromSocket(client->netconnection->mysocket)));
1236                                                                         *((int *)net_message.data) = BigLong(NETFLAG_CTL | (net_message.cursize & NETFLAG_LENGTH_MASK));
1237                                                                         NetConn_Write(mysocket, net_message.data, net_message.cursize, peeraddress);
1238                                                                         SZ_Clear(&net_message);
1239                                                                 }
1240                                                                 else if (realtime - client->netconnection->lastMessageTime >= net_messagerejointimeout.value)
1241                                                                 {
1242                                                                         // the old client hasn't sent us anything
1243                                                                         // in quite a while, so kick off and let
1244                                                                         // the retry take care of it...
1245                                                                         client->deadsocket = true;
1246                                                                 }
1247                                                         }
1248                                                         else
1249                                                         {
1250                                                                 // this is a new client, find a slot
1251                                                                 for (clientnum = 0, client = svs.clients;clientnum < svs.maxclients;clientnum++, client++)
1252                                                                         if (!client->active)
1253                                                                                 break;
1254                                                                 if (clientnum < svs.maxclients && (client->netconnection = conn = NetConn_Open(mysocket, peeraddress)) != NULL)
1255                                                                 {
1256                                                                         // connect to the client
1257                                                                         // everything is allocated, just fill in the details
1258                                                                         strlcpy (conn->address, addressstring2, sizeof (conn->address));
1259                                                                         if (developer.integer)
1260                                                                                 Con_Printf("Datagram_ParseConnectionless: sending CCREP_ACCEPT to %s.\n", addressstring2);
1261                                                                         // send back the info about the server connection
1262                                                                         SZ_Clear(&net_message);
1263                                                                         // save space for the header, filled in later
1264                                                                         MSG_WriteLong(&net_message, 0);
1265                                                                         MSG_WriteByte(&net_message, CCREP_ACCEPT);
1266                                                                         MSG_WriteLong(&net_message, LHNETADDRESS_GetPort(LHNET_AddressFromSocket(conn->mysocket)));
1267                                                                         *((int *)net_message.data) = BigLong(NETFLAG_CTL | (net_message.cursize & NETFLAG_LENGTH_MASK));
1268                                                                         NetConn_Write(mysocket, net_message.data, net_message.cursize, peeraddress);
1269                                                                         SZ_Clear(&net_message);
1270                                                                         // now set up the client struct
1271                                                                         SV_ConnectClient(clientnum, conn);
1272                                                                         NetConn_Heartbeat(1);
1273                                                                 }
1274                                                                 else
1275                                                                 {
1276                                                                         //if (developer.integer)
1277                                                                                 Con_Printf("Datagram_ParseConnectionless: sending CCREP_REJECT \"Server is full.\" to %s.\n", addressstring2);
1278                                                                         // no room; try to let player know
1279                                                                         SZ_Clear(&net_message);
1280                                                                         // save space for the header, filled in later
1281                                                                         MSG_WriteLong(&net_message, 0);
1282                                                                         MSG_WriteByte(&net_message, CCREP_REJECT);
1283                                                                         MSG_WriteString(&net_message, "Server is full.\n");
1284                                                                         *((int *)net_message.data) = BigLong(NETFLAG_CTL | (net_message.cursize & NETFLAG_LENGTH_MASK));
1285                                                                         NetConn_Write(mysocket, net_message.data, net_message.cursize, peeraddress);
1286                                                                         SZ_Clear(&net_message);
1287                                                                 }
1288                                                         }
1289                                                 }
1290                                         }
1291                                         break;
1292 #if 0
1293                                 case CCREQ_SERVER_INFO:
1294                                         if (developer.integer)
1295                                                 Con_Printf("Datagram_ParseConnectionless: received CCREQ_SERVER_INFO from %s.\n", addressstring2);
1296                                         if (sv.active && !strcmp(MSG_ReadString(), "QUAKE"))
1297                                         {
1298                                                 if (developer.integer)
1299                                                         Con_Printf("Datagram_ParseConnectionless: sending CCREP_SERVER_INFO to %s.\n", addressstring2);
1300                                                 SZ_Clear(&net_message);
1301                                                 // save space for the header, filled in later
1302                                                 MSG_WriteLong(&net_message, 0);
1303                                                 MSG_WriteByte(&net_message, CCREP_SERVER_INFO);
1304                                                 UDP_GetSocketAddr(UDP_acceptSock, &newaddr);
1305                                                 MSG_WriteString(&net_message, UDP_AddrToString(&newaddr));
1306                                                 MSG_WriteString(&net_message, hostname.string);
1307                                                 MSG_WriteString(&net_message, sv.name);
1308                                                 MSG_WriteByte(&net_message, net_activeconnections);
1309                                                 MSG_WriteByte(&net_message, svs.maxclients);
1310                                                 MSG_WriteByte(&net_message, NET_PROTOCOL_VERSION);
1311                                                 *((int *)net_message.data) = BigLong(NETFLAG_CTL | (net_message.cursize & NETFLAG_LENGTH_MASK));
1312                                                 NetConn_Write(mysocket, net_message.data, net_message.cursize, peeraddress);
1313                                                 SZ_Clear(&net_message);
1314                                         }
1315                                         break;
1316                                 case CCREQ_PLAYER_INFO:
1317                                         if (developer.integer)
1318                                                 Con_Printf("Datagram_ParseConnectionless: received CCREQ_PLAYER_INFO from %s.\n", addressstring2);
1319                                         if (sv.active)
1320                                         {
1321                                                 int playerNumber, activeNumber, clientNumber;
1322                                                 client_t *client;
1323
1324                                                 playerNumber = MSG_ReadByte();
1325                                                 activeNumber = -1;
1326                                                 for (clientNumber = 0, client = svs.clients; clientNumber < svs.maxclients; clientNumber++, client++)
1327                                                         if (client->active && ++activeNumber == playerNumber)
1328                                                                 break;
1329                                                 if (clientNumber != svs.maxclients)
1330                                                 {
1331                                                         SZ_Clear(&net_message);
1332                                                         // save space for the header, filled in later
1333                                                         MSG_WriteLong(&net_message, 0);
1334                                                         MSG_WriteByte(&net_message, CCREP_PLAYER_INFO);
1335                                                         MSG_WriteByte(&net_message, playerNumber);
1336                                                         MSG_WriteString(&net_message, client->name);
1337                                                         MSG_WriteLong(&net_message, client->colors);
1338                                                         MSG_WriteLong(&net_message, (int)client->edict->v->frags);
1339                                                         MSG_WriteLong(&net_message, (int)(realtime - client->netconnection->connecttime));
1340                                                         MSG_WriteString(&net_message, client->netconnection->address);
1341                                                         *((int *)net_message.data) = BigLong(NETFLAG_CTL | (net_message.cursize & NETFLAG_LENGTH_MASK));
1342                                                         NetConn_Write(mysocket, net_message.data, net_message.cursize, peeraddress);
1343                                                         SZ_Clear(&net_message);
1344                                                 }
1345                                         }
1346                                         break;
1347                                 case CCREQ_RULE_INFO:
1348                                         if (developer.integer)
1349                                                 Con_Printf("Datagram_ParseConnectionless: received CCREQ_RULE_INFO from %s.\n", addressstring2);
1350                                         if (sv.active)
1351                                         {
1352                                                 char *prevCvarName;
1353                                                 cvar_t *var;
1354
1355                                                 // find the search start location
1356                                                 prevCvarName = MSG_ReadString();
1357                                                 var = Cvar_FindVarAfter(prevCvarName, CVAR_NOTIFY);
1358
1359                                                 // send the response
1360                                                 SZ_Clear(&net_message);
1361                                                 // save space for the header, filled in later
1362                                                 MSG_WriteLong(&net_message, 0);
1363                                                 MSG_WriteByte(&net_message, CCREP_RULE_INFO);
1364                                                 if (var)
1365                                                 {
1366                                                         MSG_WriteString(&net_message, var->name);
1367                                                         MSG_WriteString(&net_message, var->string);
1368                                                 }
1369                                                 *((int *)net_message.data) = BigLong(NETFLAG_CTL | (net_message.cursize & NETFLAG_LENGTH_MASK));
1370                                                 NetConn_Write(mysocket, net_message.data, net_message.cursize, peeraddress);
1371                                                 SZ_Clear(&net_message);
1372                                         }
1373                                         break;
1374 #endif
1375                                 default:
1376                                         break;
1377                                 }
1378                                 // we may not have liked the packet, but it was a valid control
1379                                 // packet, so we're done processing this packet now
1380                                 return true;
1381                         }
1382                 }
1383 #endif
1384                 for (i = 0, host_client = svs.clients;i < svs.maxclients;i++, host_client++)
1385                 {
1386                         if (host_client->netconnection && host_client->netconnection->mysocket == mysocket && !LHNETADDRESS_Compare(&host_client->netconnection->peeraddress, peeraddress))
1387                         {
1388                                 sv_player = host_client->edict;
1389                                 if ((ret = NetConn_ReceivedMessage(host_client->netconnection, data, length)) == 2)
1390                                         SV_ReadClientMessage();
1391                                 return ret;
1392                         }
1393                 }
1394         }
1395         return 0;
1396 }
1397
1398 void NetConn_ServerFrame(void)
1399 {
1400         int i, length;
1401         lhnetaddress_t peeraddress;
1402         netconn_t *conn;
1403         NetConn_UpdateServerStuff();
1404         for (i = 0;i < sv_numsockets;i++)
1405                 while (sv_sockets[i] && (length = NetConn_Read(sv_sockets[i], readbuffer, sizeof(readbuffer), &peeraddress)) > 0)
1406                         NetConn_ServerParsePacket(sv_sockets[i], readbuffer, length, &peeraddress);
1407         for (i = 0, host_client = svs.clients;i < svs.maxclients;i++, host_client++)
1408         {
1409                 // never timeout loopback connections
1410                 if (host_client->netconnection && realtime > host_client->netconnection->timeout && LHNETADDRESS_GetAddressType(LHNET_AddressFromSocket(host_client->netconnection->mysocket)) != LHNETADDRESSTYPE_LOOP)
1411                 {
1412                         Con_Printf("Client \"%s\" connection timed out\n", host_client->name);
1413                         sv_player = host_client->edict;
1414                         SV_DropClient(false);
1415                 }
1416         }
1417         for (conn = netconn_list;conn;conn = conn->next)
1418                 NetConn_ReSendMessage(conn);
1419 }
1420
1421 void NetConn_QueryMasters(void)
1422 {
1423         int i;
1424         int masternum;
1425         lhnetaddress_t masteraddress;
1426         char request[256];
1427
1428         if (hostCacheCount >= HOSTCACHESIZE)
1429                 return;
1430
1431         for (i = 0;i < cl_numsockets;i++)
1432         {
1433                 if (cl_sockets[i])
1434                 {
1435 #if 0
1436                         // search LAN
1437 #if 1
1438                         UDP_Broadcast(UDP_controlSock, "\377\377\377\377getinfo", 11);
1439 #else
1440                         SZ_Clear(&net_message);
1441                         // save space for the header, filled in later
1442                         MSG_WriteLong(&net_message, 0);
1443                         MSG_WriteByte(&net_message, CCREQ_SERVER_INFO);
1444                         MSG_WriteString(&net_message, "QUAKE");
1445                         MSG_WriteByte(&net_message, NET_PROTOCOL_VERSION);
1446                         *((int *)net_message.data) = BigLong(NETFLAG_CTL | (net_message.cursize & NETFLAG_LENGTH_MASK));
1447                         UDP_Broadcast(UDP_controlSock, net_message.data, net_message.cursize);
1448                         SZ_Clear(&net_message);
1449 #endif
1450 #endif
1451
1452                         // build the getservers
1453                         snprintf(request, sizeof(request), "\377\377\377\377getservers %s %u empty full\x0A", gamename, NET_PROTOCOL_VERSION);
1454
1455                         // search internet
1456                         for (masternum = 0;sv_masters[masternum].name;masternum++)
1457                         {
1458                                 if (sv_masters[masternum].string && LHNETADDRESS_FromString(&masteraddress, sv_masters[masternum].string, MASTER_PORT) && LHNETADDRESS_GetAddressType(&masteraddress) == LHNETADDRESS_GetAddressType(LHNET_AddressFromSocket(cl_sockets[i])))
1459                                 {
1460                                         masterquerycount++;
1461                                         NetConn_WriteString(cl_sockets[i], request, &masteraddress);
1462                                 }
1463                         }
1464                 }
1465         }
1466         if (!masterquerycount)
1467         {
1468                 Con_Print("Unable to query master servers, no suitable network sockets active.\n");
1469                 strcpy(m_return_reason, "No network");
1470         }
1471 }
1472
1473 void NetConn_Heartbeat(int priority)
1474 {
1475         lhnetaddress_t masteraddress;
1476         int masternum;
1477         lhnetsocket_t *mysocket;
1478
1479         // if it's a state change (client connected), limit next heartbeat to no
1480         // more than 30 sec in the future
1481         if (priority == 1 && nextheartbeattime > realtime + 30.0)
1482                 nextheartbeattime = realtime + 30.0;
1483
1484         // limit heartbeatperiod to 30 to 270 second range,
1485         // lower limit is to avoid abusing master servers with excess traffic,
1486         // upper limit is to avoid timing out on the master server (which uses
1487         // 300 sec timeout)
1488         if (sv_heartbeatperiod.value < 30)
1489                 Cvar_SetValueQuick(&sv_heartbeatperiod, 30);
1490         if (sv_heartbeatperiod.value > 270)
1491                 Cvar_SetValueQuick(&sv_heartbeatperiod, 270);
1492
1493         // make advertising optional and don't advertise singleplayer games, and
1494         // only send a heartbeat as often as the admin wants
1495         if (sv.active && sv_public.integer && svs.maxclients >= 2 && (priority > 1 || realtime > nextheartbeattime))
1496         {
1497                 nextheartbeattime = realtime + sv_heartbeatperiod.value;
1498                 for (masternum = 0;sv_masters[masternum].name;masternum++)
1499                         if (sv_masters[masternum].string && LHNETADDRESS_FromString(&masteraddress, sv_masters[masternum].string, MASTER_PORT) && (mysocket = NetConn_ChooseServerSocketForAddress(&masteraddress)))
1500                                 NetConn_WriteString(mysocket, "\377\377\377\377heartbeat DarkPlaces\x0A", &masteraddress);
1501         }
1502 }
1503
1504 int NetConn_SendToAll(sizebuf_t *data, double blocktime)
1505 {
1506         int i, count = 0;
1507         qbyte sent[MAX_SCOREBOARD];
1508
1509         memset(sent, 0, sizeof(sent));
1510
1511         // simultaneously wait for the first CanSendMessage and send the message,
1512         // then wait for a second CanSendMessage (verifying it was received), or
1513         // the client drops and is no longer counted
1514         // the loop aborts when either it runs out of clients to send to, or a
1515         // timeout expires
1516         blocktime += Sys_DoubleTime();
1517         do
1518         {
1519                 count = 0;
1520                 NetConn_ClientFrame();
1521                 NetConn_ServerFrame();
1522                 for (i = 0, host_client = svs.clients;i < svs.maxclients;i++, host_client++)
1523                 {
1524                         if (host_client->netconnection)
1525                         {
1526                                 if (NetConn_CanSendMessage(host_client->netconnection))
1527                                 {
1528                                         if (!sent[i])
1529                                                 NetConn_SendReliableMessage(host_client->netconnection, data);
1530                                         sent[i] = true;
1531                                 }
1532                                 if (!NetConn_CanSendMessage(host_client->netconnection))
1533                                         count++;
1534                         }
1535                 }
1536         }
1537         while (count && Sys_DoubleTime() < blocktime);
1538         return count;
1539 }
1540
1541 static void Net_Heartbeat_f(void)
1542 {
1543         if (sv.active)
1544                 NetConn_Heartbeat(2);
1545         else
1546                 Con_Print("No server running, can not heartbeat to master server.\n");
1547 }
1548
1549 void PrintStats(netconn_t *conn)
1550 {
1551         Con_Printf("address=%21s canSend=%u sendSeq=%6u recvSeq=%6u\n", conn->address, conn->canSend, conn->sendSequence, conn->receiveSequence);
1552 }
1553
1554 void Net_Stats_f(void)
1555 {
1556         netconn_t *conn;
1557         Con_Printf("unreliable messages sent   = %i\n", unreliableMessagesSent);
1558         Con_Printf("unreliable messages recv   = %i\n", unreliableMessagesReceived);
1559         Con_Printf("reliable messages sent     = %i\n", reliableMessagesSent);
1560         Con_Printf("reliable messages received = %i\n", reliableMessagesReceived);
1561         Con_Printf("packetsSent                = %i\n", packetsSent);
1562         Con_Printf("packetsReSent              = %i\n", packetsReSent);
1563         Con_Printf("packetsReceived            = %i\n", packetsReceived);
1564         Con_Printf("receivedDuplicateCount     = %i\n", receivedDuplicateCount);
1565         Con_Printf("droppedDatagrams           = %i\n", droppedDatagrams);
1566         Con_Print("connections                =\n");
1567         for (conn = netconn_list;conn;conn = conn->next)
1568                 PrintStats(conn);
1569 }
1570
1571 void Net_Slist_f(void)
1572 {
1573         masterquerytime = realtime;
1574         masterquerycount = 0;
1575         masterreplycount = 0;
1576         serverquerycount = 0;
1577         serverreplycount = 0;
1578         hostCacheCount = 0;
1579         memset(&pingcache, 0, sizeof(pingcache));
1580         if (m_state != m_slist)
1581                 Con_Print("Sending requests to master servers\n");
1582         NetConn_QueryMasters();
1583         if (m_state != m_slist)
1584                 Con_Print("Listening for replies...\n");
1585 }
1586
1587 void NetConn_Init(void)
1588 {
1589         int i;
1590         lhnetaddress_t tempaddress;
1591         netconn_mempool = Mem_AllocPool("Networking", 0, NULL);
1592         Cmd_AddCommand("net_stats", Net_Stats_f);
1593         Cmd_AddCommand("net_slist", Net_Slist_f);
1594         Cmd_AddCommand("heartbeat", Net_Heartbeat_f);
1595         Cvar_RegisterVariable(&net_messagetimeout);
1596         Cvar_RegisterVariable(&net_messagerejointimeout);
1597         Cvar_RegisterVariable(&net_connecttimeout);
1598         Cvar_RegisterVariable(&cl_netlocalping_min);
1599         Cvar_RegisterVariable(&cl_netlocalping_max);
1600         Cvar_RegisterVariable(&cl_netpacketloss_receive);
1601         Cvar_RegisterVariable(&cl_netpacketloss_send);
1602         Cvar_RegisterVariable(&sv_netpacketloss_receive);
1603         Cvar_RegisterVariable(&sv_netpacketloss_send);
1604         Cvar_RegisterVariable(&hostname);
1605         Cvar_RegisterVariable(&developer_networking);
1606         Cvar_RegisterVariable(&cl_netport);
1607         Cvar_RegisterVariable(&sv_netport);
1608         Cvar_RegisterVariable(&net_address);
1609         //Cvar_RegisterVariable(&net_address_ipv6);
1610         Cvar_RegisterVariable(&sv_public);
1611         Cvar_RegisterVariable(&sv_heartbeatperiod);
1612         for (i = 0;sv_masters[i].name;i++)
1613                 Cvar_RegisterVariable(&sv_masters[i]);
1614         if ((i = COM_CheckParm("-ip")) && i + 1 < com_argc)
1615         {
1616                 if (LHNETADDRESS_FromString(&tempaddress, com_argv[i + 1], 0) == 1)
1617                 {
1618                         Con_Printf("-ip option used, setting net_address to \"%s\"\n");
1619                         Cvar_SetQuick(&net_address, com_argv[i + 1]);
1620                 }
1621                 else
1622                         Con_Printf("-ip option used, but unable to parse the address \"%s\"\n", com_argv[i + 1]);
1623         }
1624         if (((i = COM_CheckParm("-port")) || (i = COM_CheckParm("-ipport")) || (i = COM_CheckParm("-udpport"))) && i + 1 < com_argc)
1625         {
1626                 i = atoi(com_argv[i + 1]);
1627                 if (i >= 0 && i < 65536)
1628                 {
1629                         Con_Printf("-port option used, setting port cvar to %i\n", i);
1630                         Cvar_SetValueQuick(&sv_netport, i);
1631                 }
1632                 else
1633                         Con_Printf("-port option used, but %i is not a valid port number\n", i);
1634         }
1635         cl_numsockets = 0;
1636         sv_numsockets = 0;
1637         memset(&pingcache, 0, sizeof(pingcache));
1638         SZ_Alloc(&net_message, NET_MAXMESSAGE, "net_message");
1639         LHNET_Init();
1640 }
1641
1642 void NetConn_Shutdown(void)
1643 {
1644         NetConn_CloseClientPorts();
1645         NetConn_CloseServerPorts();
1646         LHNET_Shutdown();
1647 }
1648