From: Fabian Keil Date: Thu, 13 Nov 2008 09:15:51 +0000 (+0000) Subject: Make keep_alive_timeout static. X-Git-Tag: v_3_0_11~164 X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=commitdiff_plain;h=134b3281a608ec2b8a7c2fcbe6b28094f0e94973 Make keep_alive_timeout static. --- diff --git a/gateway.c b/gateway.c index 77ff47aa..781a4ad8 100644 --- a/gateway.c +++ b/gateway.c @@ -1,4 +1,4 @@ -const char gateway_rcs[] = "$Id: gateway.c,v 1.41 2008/11/08 15:29:58 fabiankeil Exp $"; +const char gateway_rcs[] = "$Id: gateway.c,v 1.42 2008/11/13 09:08:42 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/gateway.c,v $ @@ -34,6 +34,9 @@ const char gateway_rcs[] = "$Id: gateway.c,v 1.41 2008/11/08 15:29:58 fabiankeil * * Revisions : * $Log: gateway.c,v $ + * Revision 1.42 2008/11/13 09:08:42 fabiankeil + * Add new config option: keep-alive-timeout. + * * Revision 1.41 2008/11/08 15:29:58 fabiankeil * Unify two debug messages. * @@ -313,7 +316,7 @@ static const char socks_userid[] = "anonymous"; #ifdef FEATURE_CONNECTION_KEEP_ALIVE #define MAX_REUSABLE_CONNECTIONS 100 -int keep_alive_timeout = DEFAULT_KEEP_ALIVE_TIMEOUT; +static int keep_alive_timeout = DEFAULT_KEEP_ALIVE_TIMEOUT; struct reusable_connection {