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

phk at projects.linpro.no phk at projects.linpro.no
Tue Apr 25 10:17:17 CEST 2006


Author: phk
Date: 2006-04-25 10:17:17 +0200 (Tue, 25 Apr 2006)
New Revision: 152

Modified:
   trunk/varnish-cache/include/shmlog_tags.h
   trunk/varnish-cache/include/vcl_lang.h
   trunk/varnish-cache/lib/libvcl/vcl_fixed_token.c
Log:
Add new shmlog tags and handling states


Modified: trunk/varnish-cache/include/shmlog_tags.h
===================================================================
--- trunk/varnish-cache/include/shmlog_tags.h	2006-04-25 08:14:29 UTC (rev 151)
+++ trunk/varnish-cache/include/shmlog_tags.h	2006-04-25 08:17:17 UTC (rev 152)
@@ -11,6 +11,9 @@
 SLTM(SessionOpen)
 SLTM(SessionReuse)
 SLTM(SessionClose)
+SLTM(BackendOpen)
+SLTM(BackendReuse)
+SLTM(BackendClose)
 SLTM(ClientAddr)
 SLTM(Handling)
 SLTM(Request)

Modified: trunk/varnish-cache/include/vcl_lang.h
===================================================================
--- trunk/varnish-cache/include/vcl_lang.h	2006-04-25 08:14:29 UTC (rev 151)
+++ trunk/varnish-cache/include/vcl_lang.h	2006-04-25 08:17:17 UTC (rev 152)
@@ -52,7 +52,8 @@
 		HND_Pass,
 		HND_Pipe,
 		HND_Lookup,
-		HND_Fetch
+		HND_Fetch,
+		HND_Insert
 	}			handling;
 
 	char			done;

Modified: trunk/varnish-cache/lib/libvcl/vcl_fixed_token.c
===================================================================
--- trunk/varnish-cache/lib/libvcl/vcl_fixed_token.c	2006-04-25 08:14:29 UTC (rev 151)
+++ trunk/varnish-cache/lib/libvcl/vcl_fixed_token.c	2006-04-25 08:17:17 UTC (rev 152)
@@ -440,7 +440,8 @@
 	fputs("		HND_Pass,\n", f);
 	fputs("		HND_Pipe,\n", f);
 	fputs("		HND_Lookup,\n", f);
-	fputs("		HND_Fetch\n", f);
+	fputs("		HND_Fetch,\n", f);
+	fputs("		HND_Insert\n", f);
 	fputs("	}			handling;\n", f);
 	fputs("\n", f);
 	fputs("	char			done;\n", f);




More information about the varnish-commit mailing list