From: Fabian Keil Date: Sun, 10 May 2009 10:25:19 +0000 (+0000) Subject: Change wait_for_alive_connection() prototype to use (void). X-Git-Tag: v_3_0_13~103 X-Git-Url: http://www.privoxy.org/gitweb/?a=commitdiff_plain;h=9fc82b6b63834547853326306f4412b4e3ca0f36;p=privoxy.git Change wait_for_alive_connection() prototype to use (void). --- diff --git a/jcc.c b/jcc.c index 7ab3f324..a98df8ba 100644 --- a/jcc.c +++ b/jcc.c @@ -1,4 +1,4 @@ -const char jcc_rcs[] = "$Id: jcc.c,v 1.246 2009/05/10 10:12:30 fabiankeil Exp $"; +const char jcc_rcs[] = "$Id: jcc.c,v 1.247 2009/05/10 10:19:23 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/jcc.c,v $ @@ -33,6 +33,10 @@ const char jcc_rcs[] = "$Id: jcc.c,v 1.246 2009/05/10 10:12:30 fabiankeil Exp $" * * Revisions : * $Log: jcc.c,v $ + * Revision 1.247 2009/05/10 10:19:23 fabiankeil + * Reenable server-side-only keep-alive support, but only share + * outgoing connections if the connection-sharing option is set. + * * Revision 1.246 2009/05/10 10:12:30 fabiankeil * Initial keep-alive support for the client socket. * Temporarily disable the server-side-only keep-alive code. @@ -2279,7 +2283,7 @@ static int server_response_is_complete(struct client_state *csp, * Returns : N/A * *********************************************************************/ -static void wait_for_alive_connections() +static void wait_for_alive_connections(void) { int connections_alive = close_unusable_connections();