]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/stub_pconn.cc
Maintenance: Removed most NULLs using modernize-use-nullptr (#1075)
[thirdparty/squid.git] / src / tests / stub_pconn.cc
CommitLineData
4e0938ef 1/*
bf95c10a 2 * Copyright (C) 1996-2022 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
96e9c799
AJ
9/*
10 * STUB file for the pconn.cc API
96e9c799 11 */
f7f3304a 12#include "squid.h"
96e9c799 13#include "comm/Connection.h"
602d9612 14#include "pconn.h"
96e9c799 15
081edc2d
AJ
16#define STUB_API "pconn.cc"
17#include "tests/STUB.h"
18
8b082ed9 19IdleConnList::IdleConnList(const char *, PconnPool *) STUB
081edc2d 20IdleConnList::~IdleConnList() STUB
8b082ed9
FC
21void IdleConnList::push(const Comm::ConnectionPointer &) STUB
22Comm::ConnectionPointer IdleConnList::findUseable(const Comm::ConnectionPointer &) STUB_RETVAL(Comm::ConnectionPointer())
23void IdleConnList::clearHandlers(const Comm::ConnectionPointer &) STUB
af834148 24void IdleConnList::endingShutdown() STUB
e8dca475 25PconnPool::PconnPool(const char *, const CbcPointer<PeerPoolMgr>&) STUB
081edc2d
AJ
26PconnPool::~PconnPool() STUB
27void PconnPool::moduleInit() STUB
8b082ed9
FC
28void PconnPool::push(const Comm::ConnectionPointer &, const char *) STUB
29Comm::ConnectionPointer PconnPool::pop(const Comm::ConnectionPointer &, const char *, bool) STUB_RETVAL(Comm::ConnectionPointer())
30void PconnPool::count(int) STUB
081edc2d 31void PconnPool::noteUses(int) STUB
8b082ed9
FC
32void PconnPool::dumpHist(StoreEntry *) const STUB
33void PconnPool::dumpHash(StoreEntry *) const STUB
34void PconnPool::unlinkList(IdleConnList *) STUB
aee3523a 35PconnModule * PconnModule::GetInstance() STUB_RETVAL(nullptr)
8b082ed9 36void PconnModule::DumpWrapper(StoreEntry *) STUB
081edc2d
AJ
37PconnModule::PconnModule() STUB
38void PconnModule::registerWithCacheManager(void) STUB
39void PconnModule::add(PconnPool *) STUB
40void PconnModule::dump(StoreEntry *) STUB
f53969cc 41