diff options
author | Günther Deschner <gd@samba.org> | 2007-11-27 12:28:38 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:46:33 +0100 |
commit | 890dd11f612178a2a6ac0a1dcb180c727528625e (patch) | |
tree | c93c6314132cc5649efba823783e24ad4189a221 /source4/librpc/idl | |
parent | 0f622f318b5e29365162a8df111060466bcceee5 (diff) | |
download | samba-890dd11f612178a2a6ac0a1dcb180c727528625e.tar.gz samba-890dd11f612178a2a6ac0a1dcb180c727528625e.tar.bz2 samba-890dd11f612178a2a6ac0a1dcb180c727528625e.zip |
r26169: Use the NDR_PAHEX flag to print the encrypted wkssvc password buffer.
Guenther
(This used to be commit 78d18c996a0bd642208235ee1d2c81b2c47270e3)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/wkssvc.idl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/source4/librpc/idl/wkssvc.idl b/source4/librpc/idl/wkssvc.idl index 4e54848fab..337e0cba36 100644 --- a/source4/librpc/idl/wkssvc.idl +++ b/source4/librpc/idl/wkssvc.idl @@ -1,3 +1,5 @@ +#include "idl_types.h" + /* wkssvc interface definitions */ @@ -649,7 +651,7 @@ import "srvsvc.idl", "lsa.idl"; [out,ref] [size_is(*num_ous)] [string,charset(UTF16)] uint16 ***ous ); - typedef struct { + typedef [flag(NDR_PAHEX)] struct { uint8 data[524]; } wkssvc_PasswordBuffer; @@ -667,7 +669,7 @@ import "srvsvc.idl", "lsa.idl"; /* TRUE: allow the join to complete even if the account already exists */ WKSSVC_JOIN_FLAGS_DOMAIN_JOIN_IF_JOINED = 0x00000020, - + /* TRUE: this join is part of a w9x upgrade */ WKSSVC_JOIN_FLAGS_WIN9X_UPGRADE = 0x00000010, @@ -679,7 +681,7 @@ import "srvsvc.idl", "lsa.idl"; /* TRUE: join domain FALSE: join workgroup */ WKSSVC_JOIN_FLAGS_JOIN_TYPE = 0x00000001 - + } wkssvc_joinflags; /*****************************/ |