]> git.ipfire.org Git - thirdparty/squid.git/blob - src/ipc/forward.h
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / ipc / forward.h
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 /* DEBUG: section 54 Interprocess Communication */
10
11 #ifndef SQUID_IPC_FORWARD_H
12 #define SQUID_IPC_FORWARD_H
13
14 namespace Ipc
15 {
16
17 class TypedMsgHdr;
18 class StrandCoord;
19 class HereIamMessage;
20 class StrandSearchResponse;
21 class Forwarder;
22 class Inquirer;
23 class Request;
24 class Response;
25
26 } // namespace Ipc
27
28 #endif /* SQUID_IPC_FORWARD_H */
29