tevent: call epoll_panic() if EPOLL_CTL_DEL failed
[Samba/gebeck_regimport.git] / source3 / winbindd / winbindd_domain.c
blobe998275c8e2a7f78489127f60f83fe778fcb3819
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 .name = "PING",
31 .struct_cmd = WINBINDD_PING,
32 .struct_fn = winbindd_dual_ping,
33 },{
34 .name = "LIST_TRUSTDOM",
35 .struct_cmd = WINBINDD_LIST_TRUSTDOM,
36 .struct_fn = winbindd_dual_list_trusted_domains,
37 },{
38 .name = "INIT_CONNECTION",
39 .struct_cmd = WINBINDD_INIT_CONNECTION,
40 .struct_fn = winbindd_dual_init_connection,
41 },{
42 .name = "PAM_AUTH",
43 .struct_cmd = WINBINDD_PAM_AUTH,
44 .struct_fn = winbindd_dual_pam_auth,
45 },{
46 .name = "AUTH_CRAP",
47 .struct_cmd = WINBINDD_PAM_AUTH_CRAP,
48 .struct_fn = winbindd_dual_pam_auth_crap,
49 },{
50 .name = "PAM_LOGOFF",
51 .struct_cmd = WINBINDD_PAM_LOGOFF,
52 .struct_fn = winbindd_dual_pam_logoff,
53 },{
54 .name = "CHNG_PSWD_AUTH_CRAP",
55 .struct_cmd = WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP,
56 .struct_fn = winbindd_dual_pam_chng_pswd_auth_crap,
57 },{
58 .name = "PAM_CHAUTHTOK",
59 .struct_cmd = WINBINDD_PAM_CHAUTHTOK,
60 .struct_fn = winbindd_dual_pam_chauthtok,
61 },{
62 .name = "NDRCMD",
63 .struct_cmd = WINBINDD_DUAL_NDRCMD,
64 .struct_fn = winbindd_dual_ndrcmd,
65 },{
66 .name = NULL,
70 void setup_domain_child(struct winbindd_domain *domain)
72 int i;
74 for (i=0; i<lp_winbind_max_domain_connections(); i++) {
75 setup_child(domain, &domain->children[i],
76 domain_dispatch_table,
77 "log.wb", domain->name);
78 domain->children[i].domain = domain;