#include "squid.h" #include "squid-old.h" #include "TestSwapDir.h" uint64_t TestSwapDir::maxSize() const { return 3; } uint64_t TestSwapDir::currentSize() const { return 2; } uint64_t TestSwapDir::currentCount() const { return 2; } void TestSwapDir::stat(StoreEntry &) const { const_cast(this)->statsCalled = true; } void TestSwapDir::reconfigure() {} void TestSwapDir::init() {} bool TestSwapDir::unlinkdUseful() const { return false; } bool TestSwapDir::canStore(const StoreEntry &, int64_t, int &load) const { load = 0; return true; } StoreIOState::Pointer TestSwapDir::createStoreIO(StoreEntry &, StoreIOState::STFNCB *, StoreIOState::STIOCB *, void *) { return NULL; } StoreIOState::Pointer TestSwapDir::openStoreIO(StoreEntry &, StoreIOState::STFNCB *, StoreIOState::STIOCB *, void *) { return NULL; } void TestSwapDir::parse(int, char*) {} StoreSearch * TestSwapDir::search(String, HttpRequest *) { return NULL; }