From b468ba1386166cfe2f026051b205468de1c6103e Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 9 Oct 2005 12:50:35 +0000 Subject: r10846: Create a "wbsrv_domain", change wb_finddcs to the style of the rest of the async helpers. Volker (This used to be commit 10585ba4e81e979a03aec747db6fc059978fa566) --- source4/winbind/wb_server.h | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'source4/winbind/wb_server.h') diff --git a/source4/winbind/wb_server.h b/source4/winbind/wb_server.h index d3596975ed..7ad43dccf5 100644 --- a/source4/winbind/wb_server.h +++ b/source4/winbind/wb_server.h @@ -33,10 +33,18 @@ struct wbsrv_service { struct task_server *task; - struct dcerpc_pipe *netlogon_auth2_pipe; - struct cli_credentials *schannel_creds; + struct wbsrv_domain *domains; +}; + +struct wbsrv_domain { + struct wbsrv_domain *next, *prev; + + const char *name; + const struct dom_sid *sid; struct dcerpc_pipe *lsa_pipe; + struct dcerpc_pipe *netlogon_auth2_pipe; + struct cli_credentials *schannel_creds; struct dcerpc_pipe *netlogon_pipe; }; -- cgit