s3-schannel: Fix Bug #6697. Interdomain trusts with Windows 2008 R2 DCs.
[obnox/samba-ctdb.git] / source / include / rpc_dce.h
index 2793421734cd7fecfc9c71850a1d808bc8f2df51..b2e7b06812b973b0312bf6c0d0bbf7a615711a59 100644 (file)
@@ -150,14 +150,17 @@ enum schannel_direction {
 };
 
 /* Maximum size of the signing data in a fragment. */
-#define RPC_MAX_SIGN_SIZE 0x20 /* 32 */
+#define RPC_MAX_SIGN_SIZE 0x38 /* 56 */
 
 /* Maximum PDU fragment size. */
 /* #define MAX_PDU_FRAG_LEN 0x1630             this is what wnt sets */
 #define RPC_MAX_PDU_FRAG_LEN 0x10b8                    /* this is what w2k sets */
 
 /* RPC_IFACE */
-typedef struct ndr_syntax_id RPC_IFACE;
+typedef struct rpc_iface_info {
+       struct GUID uuid;  /* 16 bytes of rpc interface identification */
+       uint32 version;    /* the interface version number */
+} RPC_IFACE;
 
 #define RPC_IFACE_LEN (UUID_SIZE + 4)