diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-10-29 12:05:10 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-11-06 21:39:13 +0100 |
commit | 1a60fc02d8dce6ce7bfc8488286f3f3104a69984 (patch) | |
tree | 1b02e9811465266d01f75f13d318375b1ee76d28 /librpc | |
parent | 32695912dd3ed7c02da68209328d630c89d395ba (diff) | |
download | samba-1a60fc02d8dce6ce7bfc8488286f3f3104a69984.tar.gz samba-1a60fc02d8dce6ce7bfc8488286f3f3104a69984.tar.bz2 samba-1a60fc02d8dce6ce7bfc8488286f3f3104a69984.zip |
librpc/idl: Add named_pipe_auth.idl to Samba4
metze
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/named_pipe_auth.idl | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/librpc/idl/named_pipe_auth.idl b/librpc/idl/named_pipe_auth.idl new file mode 100644 index 0000000000..7d85eba9eb --- /dev/null +++ b/librpc/idl/named_pipe_auth.idl @@ -0,0 +1,44 @@ +#include "idl_types.h" +/* + miscellaneous IDL structures +*/ + +import "netlogon.idl"; + +[ + pointer_default(unique) +] +interface named_pipe_auth +{ + const char *NAMED_PIPE_AUTH_MAGIC = "NPAM"; + + typedef [switch_type(uint32)] union { + [case(0)] ;/* anonymous */ + [case(1)] netr_SamInfo3 info1; + } named_pipe_auth_req_info; + + typedef [public,gensize] struct { + [flag(NDR_BIG_ENDIAN), + value(ndr_size_named_pipe_auth_req(r,ndr->flags)-4)] + uint32 length; + [charset(DOS),value(NAMED_PIPE_AUTH_MAGIC)] uint8 magic[4]; + uint32 level; + [switch_is(level)] named_pipe_auth_req_info info; + } named_pipe_auth_req; + + typedef [switch_type(uint32)] union { + [case(0)] ; + [case(1)] ; + } named_pipe_auth_rep_info; + + typedef [public,gensize] struct { + [flag(NDR_BIG_ENDIAN), + value(ndr_size_named_pipe_auth_rep(r,ndr->flags)-4)] + uint32 length; + [charset(DOS),value(NAMED_PIPE_AUTH_MAGIC)] uint8 magic[4]; + uint32 level; + [switch_is(level)] named_pipe_auth_rep_info info; + NTSTATUS status; + } named_pipe_auth_rep; +} + |