]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/stub_helper.cc
Improved 'stateless' helper-related classes (#1480)
[thirdparty/squid.git] / src / tests / stub_helper.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 "helper.h"
11
12 #define STUB_API "helper.cc"
13 #include "tests/STUB.h"
14
15 void helperSubmit(const Helper::Client::Pointer &, const char *, HLPCB *, void *) STUB
16 void helperStatefulSubmit(const statefulhelper::Pointer &, const char *, HLPCB *, void *, const Helper::ReservationId &) STUB
17 Helper::Client::~Client() STUB
18 void Helper::Client::packStatsInto(Packable *, const char *) const STUB
19
20 void helperShutdown(const Helper::Client::Pointer &) STUB
21 void helperStatefulShutdown(const statefulhelper::Pointer &) STUB
22 void helperOpenServers(const Helper::Client::Pointer &) STUB
23 void helperStatefulOpenServers(const statefulhelper::Pointer &) STUB
24