]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/stub_helper.cc
Source Format Enforcement (#1234)
[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(helper *, const char *, HLPCB *, void *) STUB
16 void helperStatefulSubmit(statefulhelper *, const char *, HLPCB *, void *, uint64_t) STUB
17 helper::~helper() STUB
18 CBDATA_CLASS_INIT(helper);
19 void helper::packStatsInto(Packable *, const char *) const STUB
20
21 void helperShutdown(helper *) STUB
22 void helperStatefulShutdown(statefulhelper *) STUB
23 void helperOpenServers(helper *) STUB
24 void helperStatefulOpenServers(statefulhelper *) STUB
25 CBDATA_CLASS_INIT(statefulhelper);
26