From c7e13c84e86e693469626c28f85edd6e600b8247 Mon Sep 17 00:00:00 2001 From: Mark Haverkamp Date: Fri, 4 Feb 2005 21:19:20 +0000 Subject: [PATCH] Moved from ais_msg.h so ais_msg.h doesn't need to be included by evt. (Logical change 1.130) git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@464 fd59a12c-fef9-0310-b244-a6a79926bd2f --- include/ipc_gen.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/include/ipc_gen.h b/include/ipc_gen.h index d6fccc43..1e9ae3f2 100644 --- a/include/ipc_gen.h +++ b/include/ipc_gen.h @@ -76,4 +76,16 @@ enum nodeexec_message_types { MESSAGE_REQ_EXEC_EVT_RECOVERY_EVENTDATA }; +struct req_header { + int size; + int id; +} __attribute__((packed)); + +struct res_header { + int size; + int id; + SaErrorT error; +}; + + #endif /* IPC_GEN_H_DEFINED */