From 73e5deb9a608910afc79e4c4deb1ce5c0c8b37c1 Mon Sep 17 00:00:00 2001 From: Andrey Nazarov Date: Thu, 3 Jan 2008 17:13:54 +0000 Subject: Always reserve a client slot for dummy MVD observer. Report uptime in server status page, as well as client connection time. Do not timeout loopback connections. Updated server documentation. --- source/cl_main.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source/cl_main.c') diff --git a/source/cl_main.c b/source/cl_main.c index 3a2da20..65408d8 100644 --- a/source/cl_main.c +++ b/source/cl_main.c @@ -2505,6 +2505,9 @@ static void CL_CheckForReply( void ) { #endif static void CL_CheckTimeout( void ) { + if( NET_IsLocalAddress( &cls.netchan->remote_address ) ) { + return; + } if( cls.netchan->last_received > com_localTime ) { cls.netchan->last_received = com_localTime; } -- cgit v1.2.3