r4978 - trunk/varnish-cache/lib/libvcl

phk at varnish-cache.org phk at varnish-cache.org
Mon Jun 21 14:31:26 CEST 2010


Author: phk
Date: 2010-06-21 14:31:25 +0200 (Mon, 21 Jun 2010)
New Revision: 4978

Modified:
   trunk/varnish-cache/lib/libvcl/generate.py
   trunk/varnish-cache/lib/libvcl/vcc_obj.c
Log:
bereq.connect_timeout should be available in vcl_pipe



Modified: trunk/varnish-cache/lib/libvcl/generate.py
===================================================================
--- trunk/varnish-cache/lib/libvcl/generate.py	2010-06-21 08:44:29 UTC (rev 4977)
+++ trunk/varnish-cache/lib/libvcl/generate.py	2010-06-21 12:31:25 UTC (rev 4978)
@@ -216,8 +216,8 @@
 	),
 	('bereq.connect_timeout',
 		'RTIME',
-		( 'pass', 'miss',),
-		( 'pass', 'miss',),
+		( 'pipe', 'pass', 'miss',),
+		( 'pipe', 'pass', 'miss',),
 		'struct sess *'
 	),
 	('bereq.first_byte_timeout',

Modified: trunk/varnish-cache/lib/libvcl/vcc_obj.c
===================================================================
--- trunk/varnish-cache/lib/libvcl/vcc_obj.c	2010-06-21 08:44:29 UTC (rev 4977)
+++ trunk/varnish-cache/lib/libvcl/vcc_obj.c	2010-06-21 12:31:25 UTC (rev 4978)
@@ -194,9 +194,9 @@
 	},
 	{ "bereq.connect_timeout", RTIME, 21,
 	    "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, ",
-	    VCL_MET_PASS | VCL_MET_MISS,
+	    VCL_MET_PIPE | VCL_MET_PASS | VCL_MET_MISS,
 	    0,
 	},
 	{ "bereq.first_byte_timeout", RTIME, 24,




More information about the varnish-commit mailing list