]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/stub_helper.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / tests / stub_helper.cc
1 /*
2 * Copyright (C) 1996-2017 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 * hlp, const char *buf, HLPCB * callback, void *data) STUB
16 void helperStatefulSubmit(statefulhelper * hlp, const char *buf, HLPCB * callback, void *data, helper_stateful_server * lastserver) STUB
17 helper::~helper() STUB
18 CBDATA_CLASS_INIT(helper);
19 void helper::packStatsInto(Packable *p, const char *label) const STUB
20
21 void helperShutdown(helper * hlp) STUB
22 void helperStatefulShutdown(statefulhelper * hlp) STUB
23 void helperOpenServers(helper * hlp) STUB
24 void helperStatefulOpenServers(statefulhelper * hlp) STUB
25 void *helperStatefulServerGetData(helper_stateful_server * srv) STUB_RETVAL(NULL)
26 helper_stateful_server *helperStatefulDefer(statefulhelper * hlp) STUB_RETVAL(NULL)
27 void helperStatefulReleaseServer(helper_stateful_server * srv) STUB
28 CBDATA_CLASS_INIT(statefulhelper);
29