From: hno <> Date: Sat, 6 Jan 2001 18:45:46 +0000 (+0000) Subject: Added CBDATA_UNDEF, and moved the custom cbdata type identities to 1000+ X-Git-Tag: SQUID_3_0_PRE1~1683 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fe5aab5f9df193561199d5bedadb3d8d4e9d3f49;p=thirdparty%2Fsquid.git Added CBDATA_UNDEF, and moved the custom cbdata type identities to 1000+ --- diff --git a/src/enums.h b/src/enums.h index 65139351b0..e4b63f0e91 100644 --- a/src/enums.h +++ b/src/enums.h @@ -1,6 +1,6 @@ /* - * $Id: enums.h,v 1.178 2001/01/05 09:51:37 adrian Exp $ + * $Id: enums.h,v 1.179 2001/01/06 11:45:46 hno Exp $ * * * SQUID Internet Object Cache http://squid.nlanr.net/Squid/ @@ -684,6 +684,7 @@ enum { */ typedef enum { CBDATA_UNKNOWN = 0, + CBDATA_UNDEF = 0, CBDATA_acl_access, CBDATA_aclCheck_t, CBDATA_clientHttpRequest, @@ -702,5 +703,5 @@ typedef enum { CBDATA_RemovalPurgeWalker, CBDATA_store_client, CBDATA_storeIOState, - CBDATA_FIRST_CUSTOM_TYPE + CBDATA_FIRST_CUSTOM_TYPE = 1000 } cbdata_type;