]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/stub_helper.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / tests / stub_helper.cc
CommitLineData
4e0938ef 1/*
ef57eb7b 2 * Copyright (C) 1996-2016 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
f7f3304a 9#include "squid.h"
aa839030 10#include "helper.h"
f5691f9c 11
081edc2d
AJ
12#define STUB_API "helper.cc"
13#include "tests/STUB.h"
f5691f9c 14
081edc2d 15void helperSubmit(helper * hlp, const char *buf, HLPCB * callback, void *data) STUB
e166785a 16void helperStatefulSubmit(statefulhelper * hlp, const char *buf, HLPCB * callback, void *data, helper_stateful_server * lastserver) STUB
081edc2d 17helper::~helper() STUB
48d54e4d 18CBDATA_CLASS_INIT(helper);
bf3e8d5a 19void helper::packStatsInto(Packable *p, const char *label) const STUB
f5691f9c 20
081edc2d
AJ
21void helperShutdown(helper * hlp) STUB
22void helperStatefulShutdown(statefulhelper * hlp) STUB
23void helperOpenServers(helper * hlp) STUB
24void helperStatefulOpenServers(statefulhelper * hlp) STUB
25void *helperStatefulServerGetData(helper_stateful_server * srv) STUB_RETVAL(NULL)
26helper_stateful_server *helperStatefulDefer(statefulhelper * hlp) STUB_RETVAL(NULL)
27void helperStatefulReleaseServer(helper_stateful_server * srv) STUB
48d54e4d 28CBDATA_CLASS_INIT(statefulhelper);
f53969cc 29