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 */