r4670 - trunk/varnish-cache/include

phk at varnish-cache.org phk at varnish-cache.org
Mon Apr 19 11:59:19 CEST 2010


Author: phk
Date: 2010-04-19 11:59:19 +0200 (Mon, 19 Apr 2010)
New Revision: 4670

Modified:
   trunk/varnish-cache/include/vct.h
Log:
Add vct_isdigit()



Modified: trunk/varnish-cache/include/vct.h
===================================================================
--- trunk/varnish-cache/include/vct.h	2010-04-19 06:20:46 UTC (rev 4669)
+++ trunk/varnish-cache/include/vct.h	2010-04-19 09:59:19 UTC (rev 4670)
@@ -55,6 +55,7 @@
 #define vct_iscrlf(x) vct_is(x, VCT_CRLF)
 #define vct_islws(x) vct_is(x, VCT_LWS)
 #define vct_isctl(x) vct_is(x, VCT_CTL)
+#define vct_isdigit(x) vct_is(x, VCT_DIGIT)
 #define vct_isalpha(x) vct_is(x, VCT_ALPHA)
 #define vct_issep(x) vct_is(x, VCT_SEPARATOR)
 #define vct_issepctl(x) vct_is(x, VCT_SEPARATOR | VCT_CTL)




More information about the varnish-commit mailing list