]> git.ipfire.org Git - thirdparty/squid.git/blame - src/ipc/Messages.h
Fix Solaris getrusage wrapping
[thirdparty/squid.git] / src / ipc / Messages.h
CommitLineData
1bac0258
AR
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
8822ebee 11#include "ipc/forward.h"
1bac0258 12#include <sys/types.h>
1bac0258 13
f9b9f3bc 14/** Declarations used by varios IPC messages */
1bac0258
AR
15
16namespace Ipc
17{
18
f9b9f3bc 19/// message class identifier
7230e9c7 20typedef enum { mtNone = 0, mtRegistration,
8822ebee
AR
21 mtSharedListenRequest, mtSharedListenResponse,
22 mtCacheMgrRequest, mtCacheMgrResponse
5667a628 23 } MessageType;
1bac0258 24
1bac0258
AR
25} // namespace Ipc;
26
27
28#endif /* SQUID_IPC_MESSAGES_H */