summaryrefslogtreecommitdiff
path: root/source4/librpc/ndr/ndr_lsa.h
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-11-09 10:01:24 +0000
committerAndrew Tridgell <tridge@samba.org>2003-11-09 10:01:24 +0000
commit3c669340f529c559bff88168c3f9ddac9790d6c3 (patch)
treea127d40007d1d3d2ed0c41e3be7983284ced9292 /source4/librpc/ndr/ndr_lsa.h
parent4bba087298b45b3dd403a8ee0a50179bff72f6c4 (diff)
downloadsamba-3c669340f529c559bff88168c3f9ddac9790d6c3.tar.gz
samba-3c669340f529c559bff88168c3f9ddac9790d6c3.tar.bz2
samba-3c669340f529c559bff88168c3f9ddac9790d6c3.zip
added lsa_EnumTrustDom
(This used to be commit ef60a70912c70b11438b53ed033efe31f662143d)
Diffstat (limited to 'source4/librpc/ndr/ndr_lsa.h')
-rw-r--r--source4/librpc/ndr/ndr_lsa.h27
1 files changed, 16 insertions, 11 deletions
diff --git a/source4/librpc/ndr/ndr_lsa.h b/source4/librpc/ndr/ndr_lsa.h
index 1436c8cfab..784ff1b2a4 100644
--- a/source4/librpc/ndr/ndr_lsa.h
+++ b/source4/librpc/ndr/ndr_lsa.h
@@ -186,11 +186,27 @@ struct lsa_CreateTrustDom {
};
+struct lsa_TrustInformation {
+ struct lsa_Name name;
+ struct dom_sid2 *sid;
+};
+
+struct lsa_RefDomainList {
+ uint32 count;
+ struct lsa_TrustInformation *domains;
+ uint32 max_count;
+};
+
struct lsa_EnumTrustDom {
struct {
+ struct policy_handle *handle;
+ uint32 *resume_handle;
+ uint32 num_entries;
} in;
struct {
+ uint32 *resume_handle;
+ struct lsa_RefDomainList *domains;
NTSTATUS result;
} out;
@@ -207,17 +223,6 @@ struct lsa_TransSidArray {
struct lsa_TranslatedSid *sids;
};
-struct lsa_TrustInformation {
- struct lsa_Name name;
- struct dom_sid2 *sid;
-};
-
-struct lsa_RefDomainList {
- uint32 count;
- struct lsa_TrustInformation *domains;
- uint32 max_count;
-};
-
struct lsa_LookupNames {
struct {
struct policy_handle *handle;