]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/stub_CacheDigest.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / tests / stub_CacheDigest.cc
CommitLineData
4e0938ef 1/*
4ac4a490 2 * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
4e0938ef
AJ
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
b030f3e1 9#include "squid.h"
d35851f1 10#include "store_key_md5.h"
b030f3e1
FC
11
12#define STUB_API "CacheDigest.cc"
13#include "tests/STUB.h"
14
15class CacheDigest;
b030f3e1
FC
16class CacheDigestGuessStats;
17class StoreEntry;
18
e04fc9d3 19#include "CacheDigest.h"
831e953c 20CacheDigest::CacheDigest(uint64_t, uint8_t) {STUB}
a901d0b4 21CacheDigest::~CacheDigest() {STUB}
fab3d38b 22CacheDigest *CacheDigest::clone() const STUB_RETVAL(nullptr)
28faff32 23void CacheDigest::clear() STUB
831e953c 24void CacheDigest::updateCapacity(uint64_t) STUB
305fcd01 25bool CacheDigest::contains(const cache_key *) const STUB_RETVAL(false)
fbba122c
AJ
26void CacheDigest::add(const cache_key *) STUB
27void CacheDigest::remove(const cache_key *) STUB
6fbd1d41 28double CacheDigest::usedMaskPercent() const STUB_RETVAL(0.0)
b030f3e1
FC
29void cacheDigestGuessStatsUpdate(CacheDigestGuessStats *, int, int) STUB
30void cacheDigestGuessStatsReport(const CacheDigestGuessStats *, StoreEntry *, const char *) STUB
31void cacheDigestReport(CacheDigest *, const char *, StoreEntry *) STUB
831e953c 32uint32_t CacheDigest::CalcMaskSize(uint64_t, uint8_t) STUB_RETVAL(1)
b030f3e1 33