]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Added a comment including Robert's explanation for ConfigParser
authorwessels <>
Fri, 28 Apr 2006 11:13:20 +0000 (11:13 +0000)
committerwessels <>
Fri, 28 Apr 2006 11:13:20 +0000 (11:13 +0000)
class, taken from a squid-dev message.

src/ConfigParser.h

index 8a8b93025606c52dc89036999e07596a9fd8cac0..3ecfae2a8bae7cd7301c979b8d1e826e88814e9f 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: ConfigParser.h,v 1.4 2006/04/25 12:00:29 robertc Exp $
+ * $Id: ConfigParser.h,v 1.5 2006/04/28 05:13:20 wessels Exp $
  *
  *
  * SQUID Web Proxy Cache          http://www.squid-cache.org/
 
 #include "squid.h"
 
-/**
+/*
  * A configuration file Parser. Instances of this class track
  * parsing state and perform tokenisation. Syntax is currently
  * taken care of outside this class.
+ *
+ * One reason for this class is to allow testing of configuration
+ * using modules without linking cache_cf.o in - because that drags
+ * in all of squid by reference. Instead the tokeniser only is
+ * brought in.
  */
 
 class ConfigParser