]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/stub_client_db.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / tests / stub_client_db.cc
1 /*
2 * Copyright (C) 1996-2014 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 "client_db.h"
11
12 #define STUB_API "client_db.cc"
13 #include "tests/STUB.h"
14
15 class ClientInfo;
16
17 void clientdbInit(void) STUB
18 void clientdbUpdate(const Ip::Address &, LogTags, AnyP::ProtocolType, size_t) STUB
19 int clientdbCutoffDenied(const Ip::Address &) STUB_RETVAL(-1)
20 void clientdbDump(StoreEntry *) STUB
21 void clientdbFreeMemory(void) STUB
22 int clientdbEstablished(const Ip::Address &, int) STUB_RETVAL(-1)
23 #if USE_DELAY_POOLS
24 void clientdbSetWriteLimiter(ClientInfo * info, const int writeSpeedLimit,const double initialBurst,const double highWatermark) STUB
25 ClientInfo *clientdbGetInfo(const Ip::Address &addr) STUB_RETVAL(NULL)
26 #endif
27 void clientOpenListenSockets(void) STUB
28 void clientHttpConnectionsClose(void) STUB
29