From 012893cb421d77efc538c9f4c78b2421aef3f06e Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 3 Oct 2005 17:36:49 +0000 Subject: r10691: This gets half-way to wbinfo -n. It acquires an lsa pipe, and does a queryinfopolicy. Idea is to get a consistency check between that and our notion of the domain name and sid, and take the lsa pipe as the holder of the central smbcli_tree that netlogon and samr use as well. Volker (This used to be commit 126c80aefc4f53c4ba79afc12d70602ef9055ddb) --- source4/winbind/wb_async_helpers.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'source4/winbind/wb_async_helpers.h') diff --git a/source4/winbind/wb_async_helpers.h b/source4/winbind/wb_async_helpers.h index b37a66e972..e3de312590 100644 --- a/source4/winbind/wb_async_helpers.h +++ b/source4/winbind/wb_async_helpers.h @@ -44,3 +44,15 @@ struct wb_get_schannel_creds { struct dcerpc_pipe *netlogon; } out; }; + +struct wb_get_lsa_pipe { + struct { + struct event_context *event_ctx; + struct messaging_context *msg_ctx; + const char *domain; + } in; + struct { + const struct dom_sid *domain_sid; + struct dcerpc_pipe *pipe; + } out; +}; -- cgit