From 5b8817b1a2be7026d1f09eb4ecf799c0f9a0e48b Mon Sep 17 00:00:00 2001 From: phk Date: Mon, 7 Aug 2006 10:40:19 +0000 Subject: [PATCH] Use a 600 second timeout, 120 second is too little. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@710 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- varnish-cache/bin/varnishd/cache_acceptor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/varnish-cache/bin/varnishd/cache_acceptor.c b/varnish-cache/bin/varnishd/cache_acceptor.c index 1b7b3a85..264a9a82 100644 --- a/varnish-cache/bin/varnishd/cache_acceptor.c +++ b/varnish-cache/bin/varnishd/cache_acceptor.c @@ -65,7 +65,7 @@ vca_accept_sess(int fd) { struct timeval tv; - tv.tv_sec = 120; + tv.tv_sec = 600; tv.tv_usec = 0; AZ(setsockopt(sp->fd, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof tv)); } -- 2.39.5