]> git.ipfire.org Git - thirdparty/squid.git/blob - src/ipc/Messages.h
importing smp-snmp patch
[thirdparty/squid.git] / src / ipc / Messages.h
1 /*
2 * $Id$
3 *
4 * DEBUG: section 54 Interprocess Communication
5 *
6 */
7
8 #ifndef SQUID_IPC_MESSAGES_H
9 #define SQUID_IPC_MESSAGES_H
10
11 #include "ipc/forward.h"
12 #include <sys/types.h>
13
14 /** Declarations used by varios IPC messages */
15
16 namespace Ipc
17 {
18
19 /// message class identifier
20 typedef enum { mtNone = 0, mtRegistration,
21 mtSharedListenRequest, mtSharedListenResponse,
22 mtCacheMgrRequest, mtCacheMgrResponse,
23 mtSnmpRequest, mtSnmpResponse
24 } MessageType;
25
26 } // namespace Ipc;
27
28
29 #endif /* SQUID_IPC_MESSAGES_H */