summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/NetworkKit/IPC.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/NetworkKit/IPC.h')
-rw-r--r--src/kernel/NetworkKit/IPC.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/NetworkKit/IPC.h b/src/kernel/NetworkKit/IPC.h
index 27f39079..8da5fc69 100644
--- a/src/kernel/NetworkKit/IPC.h
+++ b/src/kernel/NetworkKit/IPC.h
@@ -53,7 +53,6 @@ enum {
kIPCLockUsed = 2,
};
-/// @brief IPC connection header, message cannot be greater than 6K.
typedef struct IPC_MSG final {
UInt32 IpcHeaderMagic; // cRemoteHeaderMagic
UInt8 IpcEndianess; // 0 : LE, 1 : BE
@@ -64,6 +63,7 @@ typedef struct IPC_MSG final {
UInt32 IpcMsg;
UInt32 IpcMsgSz;
UInt32 IpcLock;
+ SizeT IpcSize;
UInt8* IpcData;
/// @brief Passes the message to target, could be anything, HTTP packet, JSON or whatever.
static Bool Pass(IPC_MSG* self, IPC_MSG* target);