summaryrefslogtreecommitdiff
path: root/librpc
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-03-11 12:48:11 +0100
committerJeremy Allison <jra@samba.org>2011-04-13 14:13:24 -0700
commit091fd0f0f74003847ab5dd72a48e8f2978a511a5 (patch)
tree7d9ee006e588e2309c7520aff9f5302367ca2074 /librpc
parentef9d2b15e01d18dc2bf0379cc9a6df367812e287 (diff)
downloadsamba-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')
-rw-r--r--librpc/idl/lsa.idl6
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;