]> 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/*
bde978a6 2 * Copyright (C) 1996-2015 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"
1d4896fb 10#include "typedefs.h" /* for cache_key */
b030f3e1
FC
11
12#define STUB_API "CacheDigest.cc"
13#include "tests/STUB.h"
14
15class CacheDigest;
b030f3e1
FC
16class CacheDigestGuessStats;
17class StoreEntry;
18
19CacheDigest * cacheDigestCreate(int, int) STUB_RETVAL(NULL)
20void cacheDigestDestroy(CacheDigest *) STUB
21CacheDigest * cacheDigestClone(const CacheDigest *) STUB_RETVAL(NULL)
22void cacheDigestClear(CacheDigest * ) STUB
23void cacheDigestChangeCap(CacheDigest *,int) STUB
24int cacheDigestTest(const CacheDigest *, const cache_key *) STUB_RETVAL(1)
25void cacheDigestAdd(CacheDigest *, const cache_key *) STUB
26void cacheDigestDel(CacheDigest *, const cache_key *) STUB
27int cacheDigestBitUtil(const CacheDigest *) STUB_RETVAL(0)
28void cacheDigestGuessStatsUpdate(CacheDigestGuessStats *, int, int) STUB
29void cacheDigestGuessStatsReport(const CacheDigestGuessStats *, StoreEntry *, const char *) STUB
30void cacheDigestReport(CacheDigest *, const char *, StoreEntry *) STUB
31size_t cacheDigestCalcMaskSize(int, int) STUB_RETVAL(1)
32