diff options
author | Günther Deschner <gd@samba.org> | 2009-03-23 14:08:09 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-08-26 15:43:05 +0200 |
commit | aabe5773966cf9805f8f3ddce39f543fe4cbe6f7 (patch) | |
tree | 2ae7cdc181d54c95620d44864745940f2877a363 /source4 | |
parent | 91ef692d7d21cfcc486a0b9c4a1a35ae54bc5d7d (diff) | |
download | samba-aabe5773966cf9805f8f3ddce39f543fe4cbe6f7.tar.gz samba-aabe5773966cf9805f8f3ddce39f543fe4cbe6f7.tar.bz2 samba-aabe5773966cf9805f8f3ddce39f543fe4cbe6f7.zip |
schannel: move schannel.idl to main directory.
Guenther
Diffstat (limited to 'source4')
-rw-r--r-- | source4/librpc/config.mk | 2 | ||||
-rw-r--r-- | source4/librpc/idl/schannel.idl | 44 |
2 files changed, 1 insertions, 45 deletions
diff --git a/source4/librpc/config.mk b/source4/librpc/config.mk index 2aeea6d619..c0634e8c76 100644 --- a/source4/librpc/config.mk +++ b/source4/librpc/config.mk @@ -266,7 +266,7 @@ NDR_NOTIFY_OBJ_FILES = $(gen_ndrsrcdir)/ndr_notify.o [SUBSYSTEM::NDR_SCHANNEL] PUBLIC_DEPENDENCIES = LIBNDR NDR_NBT -NDR_SCHANNEL_OBJ_FILES = $(gen_ndrsrcdir)/ndr_schannel.o +NDR_SCHANNEL_OBJ_FILES = ../librpc/gen_ndr/ndr_schannel.o [SUBSYSTEM::NDR_NBT] PUBLIC_DEPENDENCIES = LIBNDR NDR_NBT_BUF NDR_SECURITY NDR_STANDARD LIBCLI_NDR_NETLOGON diff --git a/source4/librpc/idl/schannel.idl b/source4/librpc/idl/schannel.idl deleted file mode 100644 index 9cb9e1fb61..0000000000 --- a/source4/librpc/idl/schannel.idl +++ /dev/null @@ -1,44 +0,0 @@ -#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; -} |