Commit 8e1f657b authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

bereq.connect_timeout should be available in vcl_pipe



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@4978 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent f38ed6e2
...@@ -216,8 +216,8 @@ sp_variables = ( ...@@ -216,8 +216,8 @@ sp_variables = (
), ),
('bereq.connect_timeout', ('bereq.connect_timeout',
'RTIME', 'RTIME',
( 'pass', 'miss',), ( 'pipe', 'pass', 'miss',),
( 'pass', 'miss',), ( 'pipe', 'pass', 'miss',),
'struct sess *' 'struct sess *'
), ),
('bereq.first_byte_timeout', ('bereq.first_byte_timeout',
......
...@@ -194,9 +194,9 @@ struct var vcc_vars[] = { ...@@ -194,9 +194,9 @@ struct var vcc_vars[] = {
}, },
{ "bereq.connect_timeout", RTIME, 21, { "bereq.connect_timeout", RTIME, 21,
"VRT_r_bereq_connect_timeout(sp)", "VRT_r_bereq_connect_timeout(sp)",
VCL_MET_PASS | VCL_MET_MISS, VCL_MET_PIPE | VCL_MET_PASS | VCL_MET_MISS,
"VRT_l_bereq_connect_timeout(sp, ", "VRT_l_bereq_connect_timeout(sp, ",
VCL_MET_PASS | VCL_MET_MISS, VCL_MET_PIPE | VCL_MET_PASS | VCL_MET_MISS,
0, 0,
}, },
{ "bereq.first_byte_timeout", RTIME, 24, { "bereq.first_byte_timeout", RTIME, 24,
......
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