From 1f8fda717f95edb63d4596321b8c8bfafd5a4497 Mon Sep 17 00:00:00 2001 From: Rafal Szczesniak Date: Mon, 21 Aug 2006 20:52:14 +0000 Subject: r17670: 1) Refactor libnet context structure a bit, to have rpc connection properties more consistently reflected. 2) Add domain open routine for lsa pipe - this is needed for ongoing name resolve function. Tests (still neglected) and comments to follow. rafal (This used to be commit fe5652c2b8121bbe3b9932c43164035355478611) --- source4/libnet/libnet_domain.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'source4/libnet/libnet_domain.h') diff --git a/source4/libnet/libnet_domain.h b/source4/libnet/libnet_domain.h index 6dc4ed3f45..e9b1b87c66 100644 --- a/source4/libnet/libnet_domain.h +++ b/source4/libnet/libnet_domain.h @@ -19,16 +19,31 @@ */ +enum service_type { DOMAIN_SAMR, DOMAIN_LSA }; + /* * struct definition for opening a domain */ struct libnet_DomainOpen { struct { + enum service_type type; const char *domain_name; uint32_t access_mask; } in; struct { struct policy_handle domain_handle; + const char *error_string; + } out; +}; + + +struct libnet_DomainClose { + struct { + enum service_type type; + const char *domain_name; + } in; + struct { + const char *error_string; } out; }; -- cgit