#
# Makefile for the Squid Object Cache server
#
-# $Id: Makefile.am,v 1.122 2005/12/18 09:23:39 serassio Exp $
+# $Id: Makefile.am,v 1.123 2005/12/26 10:16:04 serassio Exp $
#
# Uncomment and customize the following to suit your needs:
#
STORE_TEST_SOURCES=\
$(TESTSOURCES) \
+ $(DELAY_POOL_SOURCE) \
CacheDigest.cc \
store_dir.cc \
store.cc \
/*
- * $Id: stub_MemObject.cc,v 1.1 2005/01/03 16:08:27 robertc Exp $
+ * $Id: stub_MemObject.cc,v 1.2 2005/12/26 10:16:05 serassio Exp $
*
* DEBUG: section 84 Helper process maintenance
* AUTHOR: Robert Collins
#include "squid.h"
#include "MemObject.h"
#include "HttpReply.h"
+#if DELAY_POOLS
+#include "DelayPools.h"
+#endif
off_t
MemObject::endOffset () const
return -1;
}
+#if DELAY_POOLS
+DelayId
+MemObject::mostBytesAllowed() const
+{
+ DelayId result;
+ fatal ("Not implemented");
+ return result;
+}
+
+#endif
+
void
MemObject::unlinkRequest()
{
/*
- * $Id: stub_cache_cf.cc,v 1.1 2004/08/30 03:29:02 robertc Exp $
+ * $Id: stub_cache_cf.cc,v 1.2 2005/12/26 10:16:05 serassio Exp $
*
* DEBUG: section 3 Configuration File Parsing
* AUTHOR: Robert Collins
*/
#include "squid.h"
+#include "ConfigParser.h"
void
self_destruct(void)
return NULL;
}
+void
+ConfigParser::ParseUShort(u_short *var)
+{
+ fatal("not implemented 10");
+}
+
+void
+dump_acl_access(StoreEntry * entry, const char *name, acl_access * head)
+{
+ fatal("not implemented 11");
+}
+
/*
* DO NOT MODIFY:
* arch-tag: 9bbc3b5f-8d7b-4fdc-af59-0b524a785307