]> git.ipfire.org Git - thirdparty/squid.git/blob - src/ipc/Messages.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / ipc / Messages.h
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 /* DEBUG: section 54 Interprocess Communication */
10
11 #ifndef SQUID_IPC_MESSAGES_H
12 #define SQUID_IPC_MESSAGES_H
13
14 /** Declarations used by various IPC messages */
15
16 namespace Ipc
17 {
18
19 /// message class identifier
20 typedef enum { mtNone = 0, mtRegistration,
21 mtStrandSearchRequest, mtStrandSearchResponse,
22 mtSharedListenRequest, mtSharedListenResponse,
23 mtIpcIoNotification,
24 mtCollapsedForwardingNotification,
25 mtCacheMgrRequest, mtCacheMgrResponse
26 #if SQUID_SNMP
27 ,
28 mtSnmpRequest, mtSnmpResponse
29 #endif
30 } MessageType;
31
32 } // namespace Ipc;
33
34 #endif /* SQUID_IPC_MESSAGES_H */
35