r193 - in trunk/varnish-cache: include lib/libvcl

phk at projects.linpro.no phk at projects.linpro.no
Fri Jun 16 12:20:12 CEST 2006


Author: phk
Date: 2006-06-16 12:20:12 +0200 (Fri, 16 Jun 2006)
New Revision: 193

Modified:
   trunk/varnish-cache/include/vcl_lang.h
   trunk/varnish-cache/lib/libvcl/vcl_fixed_token.c
Log:
Add header field to object


Modified: trunk/varnish-cache/include/vcl_lang.h
===================================================================
--- trunk/varnish-cache/include/vcl_lang.h	2006-06-16 10:19:44 UTC (rev 192)
+++ trunk/varnish-cache/include/vcl_lang.h	2006-06-16 10:20:12 UTC (rev 193)
@@ -34,6 +34,8 @@
 	unsigned		busy;
 	unsigned		len;
 
+	char			*header;
+
 	TAILQ_HEAD(, storage)	store;
 };
 

Modified: trunk/varnish-cache/lib/libvcl/vcl_fixed_token.c
===================================================================
--- trunk/varnish-cache/lib/libvcl/vcl_fixed_token.c	2006-06-16 10:19:44 UTC (rev 192)
+++ trunk/varnish-cache/lib/libvcl/vcl_fixed_token.c	2006-06-16 10:20:12 UTC (rev 193)
@@ -422,6 +422,8 @@
 	fputs("	unsigned		busy;\n", f);
 	fputs("	unsigned		len;\n", f);
 	fputs("\n", f);
+	fputs("	char			*header;\n", f);
+	fputs("\n", f);
 	fputs("	TAILQ_HEAD(, storage)	store;\n", f);
 	fputs("};\n", f);
 	fputs("\n", f);




More information about the varnish-commit mailing list