X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=netconn.c;h=00d5dd075ec2cd17935e0510fff3a06dc88ba82c;hb=d825f40374cf6c88ca0087a23f9a75b8deba26f2;hp=039f7e1f552f3b51b5e6a6d29e3fbbe314e41fc3;hpb=4e67e148d036ec886131914d5f73b46190bc2ab7;p=xonotic%2Fdarkplaces.git diff --git a/netconn.c b/netconn.c index 039f7e1f..00d5dd07 100755 --- a/netconn.c +++ b/netconn.c @@ -116,10 +116,10 @@ static double serverlist_querywaittime = 0; static unsigned char sendbuffer[NET_HEADERSIZE+NET_MAXMESSAGE]; static unsigned char readbuffer[NET_HEADERSIZE+NET_MAXMESSAGE]; -int cl_numsockets; -lhnetsocket_t *cl_sockets[16]; -int sv_numsockets; -lhnetsocket_t *sv_sockets[16]; +static int cl_numsockets; +static lhnetsocket_t *cl_sockets[16]; +static int sv_numsockets; +static lhnetsocket_t *sv_sockets[16]; netconn_t *netconn_list = NULL; mempool_t *netconn_mempool = NULL;