s3:winbind: Convert WINBINDD_LIST_GROUPS to the new API
[Samba/aatanasov.git] / source3 / winbindd / winbindd_domain.c
blob107c83ac80866082f5f0a2ab9672878f3e9cbba7
1 /*
2 Unix SMB/CIFS implementation.
4 Winbind domain child functions
6 Copyright (C) Stefan Metzmacher 2007
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "includes.h"
23 #include "winbindd.h"
25 #undef DBGC_CLASS
26 #define DBGC_CLASS DBGC_WINBIND
28 static const struct winbindd_child_dispatch_table domain_dispatch_table[];
30 void setup_domain_child(struct winbindd_domain *domain,
31 struct winbindd_child *child)
33 setup_child(domain, child, domain_dispatch_table,
34 "log.wb", domain->name);
36 child->domain = domain;
39 static const struct winbindd_child_dispatch_table domain_dispatch_table[] = {
41 .name = "PING",
42 .struct_cmd = WINBINDD_PING,
43 .struct_fn = winbindd_dual_ping,
44 },{
45 .name = "LOOKUPSID",
46 .struct_cmd = WINBINDD_LOOKUPSID,
47 .struct_fn = winbindd_dual_lookupsid,
48 },{
49 .name = "LOOKUPNAME",
50 .struct_cmd = WINBINDD_LOOKUPNAME,
51 .struct_fn = winbindd_dual_lookupname,
52 },{
53 .name = "LIST_TRUSTDOM",
54 .struct_cmd = WINBINDD_LIST_TRUSTDOM,
55 .struct_fn = winbindd_dual_list_trusted_domains,
56 },{
57 .name = "INIT_CONNECTION",
58 .struct_cmd = WINBINDD_INIT_CONNECTION,
59 .struct_fn = winbindd_dual_init_connection,
60 },{
61 .name = "GETDCNAME",
62 .struct_cmd = WINBINDD_GETDCNAME,
63 .struct_fn = winbindd_dual_getdcname,
64 },{
65 .name = "SHOW_SEQUENCE",
66 .struct_cmd = WINBINDD_SHOW_SEQUENCE,
67 .struct_fn = winbindd_dual_show_sequence,
68 },{
69 .name = "PAM_AUTH",
70 .struct_cmd = WINBINDD_PAM_AUTH,
71 .struct_fn = winbindd_dual_pam_auth,
72 },{
73 .name = "AUTH_CRAP",
74 .struct_cmd = WINBINDD_PAM_AUTH_CRAP,
75 .struct_fn = winbindd_dual_pam_auth_crap,
76 },{
77 .name = "PAM_LOGOFF",
78 .struct_cmd = WINBINDD_PAM_LOGOFF,
79 .struct_fn = winbindd_dual_pam_logoff,
80 },{
81 .name = "CHNG_PSWD_AUTH_CRAP",
82 .struct_cmd = WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP,
83 .struct_fn = winbindd_dual_pam_chng_pswd_auth_crap,
84 },{
85 .name = "PAM_CHAUTHTOK",
86 .struct_cmd = WINBINDD_PAM_CHAUTHTOK,
87 .struct_fn = winbindd_dual_pam_chauthtok,
88 },{
89 .name = "CHECK_MACHACC",
90 .struct_cmd = WINBINDD_CHECK_MACHACC,
91 .struct_fn = winbindd_dual_check_machine_acct,
92 },{
93 .name = "DUAL_USERINFO",
94 .struct_cmd = WINBINDD_DUAL_USERINFO,
95 .struct_fn = winbindd_dual_userinfo,
96 },{
97 .name = "GETUSERDOMGROUPS",
98 .struct_cmd = WINBINDD_GETUSERDOMGROUPS,
99 .struct_fn = winbindd_dual_getuserdomgroups,
101 .name = "GETSIDALIASES",
102 .struct_cmd = WINBINDD_DUAL_GETSIDALIASES,
103 .struct_fn = winbindd_dual_getsidaliases,
105 .name = "GETSIDALIASES",
106 .struct_cmd = WINBINDD_GETSIDALIASES,
107 .struct_fn = winbindd_dual_getsidaliases,
109 .name = "CCACHE_NTLM_AUTH",
110 .struct_cmd = WINBINDD_CCACHE_NTLMAUTH,
111 .struct_fn = winbindd_dual_ccache_ntlm_auth,
113 .name = "NDRCMD",
114 .struct_cmd = WINBINDD_DUAL_NDRCMD,
115 .struct_fn = winbindd_dual_ndrcmd,
117 .name = NULL,