From: rousskov <> Date: Wed, 8 Apr 1998 05:36:34 +0000 (+0000) Subject: - tmp changed defaults of SQUID_MAINTAIN_CACHE_DIGEST and SQUID_PEER_DIGEST X-Git-Tag: SQUID_3_0_PRE1~3603 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=400ae77e8eca887b560fc60d337b277b838d12b8;p=thirdparty%2Fsquid.git - tmp changed defaults of SQUID_MAINTAIN_CACHE_DIGEST and SQUID_PEER_DIGEST to 0 --- diff --git a/src/squid.h b/src/squid.h index 5e5bde0e76..4fe8396846 100644 --- a/src/squid.h +++ b/src/squid.h @@ -1,6 +1,6 @@ /* - * $Id: squid.h,v 1.169 1998/04/04 01:44:05 kostas Exp $ + * $Id: squid.h,v 1.170 1998/04/07 23:36:34 rousskov Exp $ * * AUTHOR: Duane Wessels * @@ -322,6 +322,15 @@ struct rusage { #include "cache_snmp.h" #endif +/* + * maintain a digest of cache contents and send the digest to neighbors upon + * request; if disabled we still can request digests from other caches + */ +#define SQUID_MAINTAIN_CACHE_DIGEST 0 +/* must be set before using structs.h */ +/* ask peers about their digests and use them */ +#define SQUID_PEER_DIGEST 0 + #include "defines.h" #include "enums.h" #include "typedefs.h" @@ -356,10 +365,5 @@ struct rusage { extern struct snmp_mib_tree *Mib; #endif -/* - * maintain a digest of cache contents and send the digest to neighbors upon - * request; if disabled we still can request digests from other caches - */ -#define SQUID_MAINTAIN_CACHE_DIGEST 1 #endif /* SQUID_H */