Commit 7ea0b860 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

rpcrt4: Fix the fault packet structure to comply with the DCE/RPC specification.

parent 628c5e9b
...@@ -58,10 +58,10 @@ typedef struct ...@@ -58,10 +58,10 @@ typedef struct
RpcPktCommonHdr common; RpcPktCommonHdr common;
unsigned long alloc_hint; /* Data size in bytes excluding header and tail. */ unsigned long alloc_hint; /* Data size in bytes excluding header and tail. */
unsigned short context_id; /* Presentation context identifier */ unsigned short context_id; /* Presentation context identifier */
unsigned char alert_count; /* Pending alert count */ unsigned char cancel_count; /* Received cancel count */
unsigned char padding[3]; /* Force alignment! */ unsigned char reserved; /* Force alignment! */
unsigned long status; /* Runtime fault code (RPC_STATUS) */ unsigned long status; /* Runtime fault code (RPC_STATUS) */
unsigned long reserved; unsigned long reserved2;
} RpcPktFaultHdr; } RpcPktFaultHdr;
typedef struct typedef struct
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment