From aabe5773966cf9805f8f3ddce39f543fe4cbe6f7 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Mon, 23 Mar 2009 14:08:09 +0100 Subject: schannel: move schannel.idl to main directory. Guenther --- librpc/idl/schannel.idl | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 librpc/idl/schannel.idl (limited to 'librpc') diff --git a/librpc/idl/schannel.idl b/librpc/idl/schannel.idl new file mode 100644 index 0000000000..9cb9e1fb61 --- /dev/null +++ b/librpc/idl/schannel.idl @@ -0,0 +1,44 @@ +#include "idl_types.h" + +/* + schannel structures +*/ + +import "netlogon.idl", "nbt.idl"; + +interface schannel +{ + /* + a schannel bind blob - used in dcerpc auth_info + on a schannel + */ + typedef struct { + astring domain; + astring workstation; + } schannel_bind_3; + + typedef struct { + astring domain; + astring workstation; + nbt_string dnsdomain; + nbt_string dnsworkstation; + } schannel_bind_23; + + typedef [nodiscriminant] union { + [case (3)] schannel_bind_3 info3; + [case (23)] schannel_bind_23 info23; + } schannel_bind_info; + + typedef [public] struct { + uint32 unknown1; /* seems to need to be 0 */ + uint32 bind_type; + [switch_is(bind_type)] schannel_bind_info u; + } schannel_bind; + + /* a bind_ack blob */ + typedef [public] struct { + uint32 unknown1; /* 1 */ + uint32 unknown2; /* 0 */ + uint32 unknown3; /* 0x006c0000 */ + } schannel_bind_ack; +} -- cgit