]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/stub_pconn.cc
Source Format Enforcement (#532)
[thirdparty/squid.git] / src / tests / stub_pconn.cc
CommitLineData
4e0938ef 1/*
77b1029d 2 * Copyright (C) 1996-2020 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
af834148 19IdleConnList::IdleConnList(const char *akey, PconnPool *parent) STUB
081edc2d
AJ
20IdleConnList::~IdleConnList() STUB
21void IdleConnList::push(const Comm::ConnectionPointer &conn) STUB
af834148 22Comm::ConnectionPointer IdleConnList::findUseable(const Comm::ConnectionPointer &akey) STUB_RETVAL(Comm::ConnectionPointer())
081edc2d 23void IdleConnList::clearHandlers(const Comm::ConnectionPointer &conn) STUB
af834148 24void IdleConnList::endingShutdown() STUB
e8dca475 25PconnPool::PconnPool(const char *, const CbcPointer<PeerPoolMgr>&) STUB
081edc2d
AJ
26PconnPool::~PconnPool() STUB
27void PconnPool::moduleInit() STUB
28void PconnPool::push(const Comm::ConnectionPointer &serverConn, const char *domain) STUB
29Comm::ConnectionPointer PconnPool::pop(const Comm::ConnectionPointer &destLink, const char *domain, bool retriable) STUB_RETVAL(Comm::ConnectionPointer())
30void PconnPool::count(int uses) STUB
31void PconnPool::noteUses(int) STUB
32void PconnPool::dumpHist(StoreEntry *e) const STUB
33void PconnPool::dumpHash(StoreEntry *e) const STUB
34void PconnPool::unlinkList(IdleConnList *list) STUB
35PconnModule * PconnModule::GetInstance() STUB_RETVAL(NULL)
36void PconnModule::DumpWrapper(StoreEntry *e) STUB
37PconnModule::PconnModule() STUB
38void PconnModule::registerWithCacheManager(void) STUB
39void PconnModule::add(PconnPool *) STUB
40void PconnModule::dump(StoreEntry *) STUB
f53969cc 41