]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/stub_wccp2.cc
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / tests / stub_wccp2.cc
1 /*
2 * Copyright (C) 1996-2018 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
11 #if USE_WCCPv2
12
13 #define STUB_API "wccp2.cc"
14 #include "tests/STUB.h"
15
16 class StoreEntry;
17
18 void wccp2_add_service_list(int, int, int, int, int, int[], int, char *) STUB
19 void wccp2Init(void) STUB
20 void wccp2ConnectionOpen(void) STUB
21 void wccp2ConnectionClose(void) STUB
22 void dump_wccp2_method(StoreEntry *, const char *, int) STUB
23 void free_wccp2_method(int *) STUB
24 void parse_wccp2_amethod(int *) STUB
25 void dump_wccp2_amethod(StoreEntry *, const char *, int) STUB
26 void parse_wccp2_service(void *) STUB
27 void dump_wccp2_service(StoreEntry *, const char *, void *) STUB
28 void free_wccp2_service(void *) STUB
29 int check_null_wccp2_service(void *) STUB_RETVAL(0)
30 void parse_wccp2_service_info(void *) STUB
31 void dump_wccp2_service_info(StoreEntry *, const char *, void *) STUB
32 void free_wccp2_service_info(void *) STUB
33 void free_wccp2_amethod(int *) STUB
34 void parse_wccp2_method(int *) STUB
35
36 #endif /* USE_WCCPv2 */
37