]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
DW:
authorwessels <>
Wed, 15 Mar 2000 05:59:13 +0000 (05:59 +0000)
committerwessels <>
Wed, 15 Mar 2000 05:59:13 +0000 (05:59 +0000)
 - Added diskd stats to cachemgr.
 - Added config options for diskd magic constants.

src/cf.data.pre
src/structs.h

index 20fd15f153c8f14aca52122efd54c15e571e48db..9d1048dcdfd0a2db1336bd8e1df57bfde93d4ddc 100644 (file)
@@ -1,6 +1,6 @@
 
 #
-# $Id: cf.data.pre,v 1.167 2000/03/14 22:54:32 wessels Exp $
+# $Id: cf.data.pre,v 1.168 2000/03/14 22:59:13 wessels Exp $
 #
 #
 # SQUID Internet Object Cache  http://squid.nlanr.net/Squid/
@@ -3200,5 +3200,19 @@ client_persistent_connections on
 server_persistent_connections on
 DOC_END
 
+NAME: diskd_magic1
+IFDEF: USE_DISKD
+TYPE: int
+LOC: Config.diskd.magic1
+DEFAULT: 64
+DOC_NONE
+
+NAME: diskd_magic2
+IFDEF: USE_DISKD
+TYPE: int
+LOC: Config.diskd.magic2
+DEFAULT: 72
+DOC_NONE
+
 EOF
 
index 17dbe0c04e17ca6a3e831c663d02018fdb2f3fe1..5ce79efc8e24d53c9ec251501958a1a148286cd9 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: structs.h,v 1.314 2000/03/09 04:50:14 wessels Exp $
+ * $Id: structs.h,v 1.315 2000/03/14 22:59:13 wessels Exp $
  *
  *
  * SQUID Internet Object Cache  http://squid.nlanr.net/Squid/
@@ -493,6 +493,12 @@ struct _SquidConfig {
        int rebuild_chunk_percentage;
     } digest;
 #endif
+#if USE_DISKD
+    struct {
+       int magic1;
+       int magic2;
+    } diskd;
+#endif
 };
 
 struct _SquidConfig2 {