-
Notifications
You must be signed in to change notification settings - Fork 638
Expand file tree
/
Copy pathstub_store_client.cc
More file actions
33 lines (29 loc) · 1013 Bytes
/
stub_store_client.cc
File metadata and controls
33 lines (29 loc) · 1013 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
* Copyright (C) 1996-2026 The Squid Software Foundation and contributors
*
* Squid software is distributed under GPLv2+ license and includes
* contributions from numerous individuals and organizations.
* Please see the COPYING and CONTRIBUTORS files for details.
*/
#include "squid.h"
#include "repl_modules.h"
#include "Store.h"
#include "store_digest.h"
#include "store_log.h"
#include "store_rebuild.h"
#include "StoreClient.h"
#define STUB_API "store_client.cc"
#include "tests/STUB.h"
int storePendingNClients(const StoreEntry *) STUB_RETVAL_NOP(0)
void StoreEntry::invokeHandlers() STUB_NOP
void storeLog(int, const StoreEntry *) STUB_NOP
void storeLogOpen(void) STUB
void storeDigestInit(void) STUB
void storeRebuildStart(void) STUB
void storeReplSetup(void) STUB
void store_client::noteSwapInDone(bool) STUB
#if USE_DELAY_POOLS
int store_client::bytesWanted() const STUB_RETVAL(0)
#endif
void store_client::dumpStats(MemBuf *, int) const STUB
int store_client::getType() const STUB_RETVAL(0)