diff options
author | Volker Lendecke <vl@samba.org> | 2011-03-11 12:48:11 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2011-04-13 14:13:24 -0700 |
commit | 091fd0f0f74003847ab5dd72a48e8f2978a511a5 (patch) | |
tree | 7d9ee006e588e2309c7520aff9f5302367ca2074 /librpc/idl | |
parent | ef9d2b15e01d18dc2bf0379cc9a6df367812e287 (diff) | |
download | samba-091fd0f0f74003847ab5dd72a48e8f2978a511a5.tar.gz samba-091fd0f0f74003847ab5dd72a48e8f2978a511a5.tar.bz2 samba-091fd0f0f74003847ab5dd72a48e8f2978a511a5.zip |
s3: Add wbint_LookupSids
This will be called from wb_lookupsids to query remote DCs via lsa
Signed-off-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'librpc/idl')
-rw-r--r-- | librpc/idl/lsa.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/librpc/idl/lsa.idl b/librpc/idl/lsa.idl index fc59cd0433..c8aaa47c9d 100644 --- a/librpc/idl/lsa.idl +++ b/librpc/idl/lsa.idl @@ -519,7 +519,7 @@ import "misc.idl", "security.idl"; } lsa_TransSidArray; const int LSA_REF_DOMAIN_LIST_MULTIPLIER = 32; - typedef struct { + typedef [public] struct { [range(0,1000)] uint32 count; [size_is(count)] lsa_DomainInfo *domains; uint32 max_size; @@ -533,7 +533,7 @@ import "misc.idl", "security.idl"; * Level 6: Like 4 */ - typedef enum { + typedef [public] enum { LSA_LOOKUP_NAMES_ALL = 1, LSA_LOOKUP_NAMES_DOMAINS_ONLY = 2, LSA_LOOKUP_NAMES_PRIMARY_DOMAIN_ONLY = 3, @@ -563,7 +563,7 @@ import "misc.idl", "security.idl"; uint32 sid_index; } lsa_TranslatedName; - typedef struct { + typedef [public] struct { [range(0,20480)] uint32 count; [size_is(count)] lsa_TranslatedName *names; } lsa_TransNameArray; |