]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/stub_store_client.cc
Bug 5428: Warn if pkg-config is not found (#1902)
[thirdparty/squid.git] / src / tests / stub_store_client.cc
1 /*
2 * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
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
9 #include "squid.h"
10 #include "repl_modules.h"
11 #include "Store.h"
12 #include "store_digest.h"
13 #include "store_log.h"
14 #include "store_rebuild.h"
15 #include "StoreClient.h"
16
17 #define STUB_API "store_client.cc"
18 #include "tests/STUB.h"
19
20 int storePendingNClients(const StoreEntry *) STUB_RETVAL_NOP(0)
21 void StoreEntry::invokeHandlers() STUB_NOP
22 void storeLog(int, const StoreEntry *) STUB_NOP
23 void storeLogOpen(void) STUB
24 void storeDigestInit(void) STUB
25 void storeRebuildStart(void) STUB
26 void storeReplSetup(void) STUB
27 void store_client::noteSwapInDone(bool) STUB
28 #if USE_DELAY_POOLS
29 int store_client::bytesWanted() const STUB_RETVAL(0)
30 #endif
31 void store_client::dumpStats(MemBuf *, int) const STUB
32 int store_client::getType() const STUB_RETVAL(0)
33