From: wessels <> Date: Wed, 15 Mar 2000 05:59:13 +0000 (+0000) Subject: DW: X-Git-Tag: SQUID_3_0_PRE1~2059 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=708ef61cc7679247cf44696097b2b7470c7c4e10;p=thirdparty%2Fsquid.git DW: - Added diskd stats to cachemgr. - Added config options for diskd magic constants. --- diff --git a/src/cf.data.pre b/src/cf.data.pre index 20fd15f153..9d1048dcdf 100644 --- a/src/cf.data.pre +++ b/src/cf.data.pre @@ -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 diff --git a/src/structs.h b/src/structs.h index 17dbe0c04e..5ce79efc8e 100644 --- a/src/structs.h +++ b/src/structs.h @@ -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 {