From: wessels <> Date: Sat, 11 Dec 1999 22:55:08 +0000 (+0000) Subject: For client-side idle persistent connections, now use the value of X-Git-Tag: SQUID_3_0_PRE1~2106 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8851b98ca9f9f0159472b3ebaaed6ccacec488ab;p=thirdparty%2Fsquid.git For client-side idle persistent connections, now use the value of Config.Timeout.pconn instead of hard-coded 15 seconds. --- diff --git a/src/client_side.cc b/src/client_side.cc index 11eb3c1309..75a727c191 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side.cc,v 1.462 1999/10/04 05:05:04 wessels Exp $ + * $Id: client_side.cc,v 1.463 1999/12/11 15:55:08 wessels Exp $ * * DEBUG: section 33 Client-side Routines * AUTHOR: Duane Wessels @@ -1729,7 +1729,7 @@ clientKeepaliveNextRequest(clientHttpRequest * http) /* * Set the timeout BEFORE calling clientReadRequest(). */ - commSetTimeout(conn->fd, 15, requestTimeout, conn); + commSetTimeout(conn->fd, Config.Timeout.pconn, requestTimeout, conn); clientReadRequest(conn->fd, conn); /* Read next request */ /* * Note, the FD may be closed at this point.