/*
- * $Id: StoreMeta.cc,v 1.6.2.1 2008/02/24 11:29:04 amosjeffries Exp $
+ * $Id: StoreMeta.cc,v 1.6.2.2 2008/02/24 11:29:55 amosjeffries Exp $
*
* DEBUG: section 20 Storage Manager Swapfile Metadata
* AUTHOR: Kostas Anagnostakis
}
/* Not yet implemented */
- if (type >= STORE_META_END) {
+ if (type >= STORE_META_END ||
+ type == STORE_META_STOREURL ||
+ type == STORE_META_VARY_ID) {
debugs(20, 3, "storeSwapMetaUnpack: Not yet implemented (" << type << ") in disk metadata");
return false;
}
/*
- * $Id: enums.h,v 1.258.2.1 2008/02/24 11:29:04 amosjeffries Exp $
+ * $Id: enums.h,v 1.258.2.2 2008/02/24 11:29:55 amosjeffries Exp $
*
*
* SQUID Web Proxy Cache http://www.squid-cache.org/
STORE_META_VARY_HEADERS, /* Stores Vary request headers */
STORE_META_STD_LFS, /* standard metadata in lfs format */
STORE_META_OBJSIZE, /* object size, not impleemented, squid26 compatibility */
- /* STORE_META_VARY_ID, / * Unique ID linking variants */
+ STORE_META_STOREURL, /* the store url, if different to the normal URL */
+ STORE_META_VARY_ID, /* Unique ID linking variants */
STORE_META_END
};