Commit f54ff6ba authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Fold long lines.


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@1497 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 1581f538
......@@ -162,14 +162,16 @@ vca_acct(void *arg)
tv_sndtimeo.tv_sec = params->send_timeout;
TAILQ_FOREACH(ls, &heritage.socks, list)
AZ(setsockopt(ls->sock, SOL_SOCKET,
SO_SNDTIMEO, &tv_sndtimeo, sizeof tv_sndtimeo));
SO_SNDTIMEO,
&tv_sndtimeo, sizeof tv_sndtimeo));
}
if (params->sess_timeout != tv_rcvtimeo.tv_sec) {
need_test = 1;
tv_rcvtimeo.tv_sec = params->sess_timeout;
TAILQ_FOREACH(ls, &heritage.socks, list)
AZ(setsockopt(ls->sock, SOL_SOCKET,
SO_RCVTIMEO, &tv_rcvtimeo, sizeof tv_rcvtimeo));
SO_RCVTIMEO,
&tv_rcvtimeo, sizeof tv_rcvtimeo));
}
i = poll(pfd, heritage.nsocks, 1000);
for (j = 0; j < heritage.nsocks; j++) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment