summaryrefslogtreecommitdiffstats
path: root/source/winbindd/winbindd_locator.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-10-08 12:25:57 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:31:15 -0500
commitabbb36a37c1dba2218a6c7ec31739eba5f250127 (patch)
tree73a16d7c950ba25952a6099de80ac9876b1b5d14 /source/winbindd/winbindd_locator.c
parent2dbc168e543b84d05b85bc0a44aa8fc10adc4511 (diff)
downloadsamba-abbb36a37c1dba2218a6c7ec31739eba5f250127.tar.gz
samba-abbb36a37c1dba2218a6c7ec31739eba5f250127.tar.xz
samba-abbb36a37c1dba2218a6c7ec31739eba5f250127.zip
r25571: split up child_dispatch_table into domain, idmap and locator tables
metze
Diffstat (limited to 'source/winbindd/winbindd_locator.c')
-rw-r--r--source/winbindd/winbindd_locator.c18
1 files changed, 15 insertions, 3 deletions
diff --git a/source/winbindd/winbindd_locator.c b/source/winbindd/winbindd_locator.c
index 52b6dc06f13..ade2c1539b4 100644
--- a/source/winbindd/winbindd_locator.c
+++ b/source/winbindd/winbindd_locator.c
@@ -26,11 +26,17 @@
#undef DBGC_CLASS
#define DBGC_CLASS DBGC_WINBIND
+
+static const struct winbindd_child_dispatch_table locator_dispatch_table[];
+
static struct winbindd_child static_locator_child;
void init_locator_child(void)
{
- setup_domain_child(NULL, &static_locator_child, "locator");
+ setup_domain_child(NULL,
+ &static_locator_child,
+ locator_dispatch_table,
+ "locator");
}
struct winbindd_child *locator_child(void)
@@ -49,8 +55,8 @@ void winbindd_dsgetdcname(struct winbindd_cli_state *state)
sendto_child(state, locator_child());
}
-enum winbindd_result winbindd_dual_dsgetdcname(struct winbindd_domain *domain,
- struct winbindd_cli_state *state)
+static enum winbindd_result dual_dsgetdcname(struct winbindd_domain *domain,
+ struct winbindd_cli_state *state)
{
NTSTATUS result;
struct DS_DOMAIN_CONTROLLER_INFO *info = NULL;
@@ -88,3 +94,9 @@ enum winbindd_result winbindd_dual_dsgetdcname(struct winbindd_domain *domain,
return WINBINDD_OK;
}
+
+static const struct winbindd_child_dispatch_table locator_dispatch_table[] = {
+ { WINBINDD_DSGETDCNAME, dual_dsgetdcname, "DSGETDCNAME" },
+
+ { WINBINDD_NUM_CMDS, NULL, "NONE" }
+};