diff options
author | Andreas Schneider <asn@samba.org> | 2011-02-24 12:06:54 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-03-08 11:41:29 +0100 |
commit | bd66fc81b648eaa966522f78c03f5844d9019c44 (patch) | |
tree | 00db6b03427bdfbcef6edf52aa241db965c9c864 /source3 | |
parent | 55296edb09e9e7d365cf45cae1f81204287662bb (diff) | |
download | samba-bd66fc81b648eaa966522f78c03f5844d9019c44.tar.gz samba-bd66fc81b648eaa966522f78c03f5844d9019c44.tar.xz samba-bd66fc81b648eaa966522f78c03f5844d9019c44.zip |
s3-rpc_server: Start the Endpoint Mapper Dameon if enabled.
Endpoint Mapper is still disabled by default!
Signed-off-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/rpc_server/rpc_ep_setup.c | 15 | ||||
-rw-r--r-- | source3/smbd/server.c | 15 |
2 files changed, 24 insertions, 6 deletions
diff --git a/source3/rpc_server/rpc_ep_setup.c b/source3/rpc_server/rpc_ep_setup.c index 85021b3c222..3fdd2f1eebd 100644 --- a/source3/rpc_server/rpc_ep_setup.c +++ b/source3/rpc_server/rpc_ep_setup.c @@ -61,12 +61,12 @@ static uint16_t _open_sockets(struct tevent_context *ev_ctx, uint16_t p = 0; const char *rpcsrv_type; - /* TODO: Remove this if we enable epmapper */ rpcsrv_type = lp_parm_const_string(GLOBAL_SECTION_SNUM, - "rpc_server", "epmapper", + "rpc_server", + "epmapper", "none"); if (StrCaseCmp(rpcsrv_type, "none") == 0) { - return 1; + return (uint16_t) -1; } if (lp_interfaces() && lp_bind_interfaces_only()) { @@ -135,7 +135,8 @@ static NTSTATUS _rpc_ep_register(struct tevent_context *ev_ctx, /* start endpoint mapper only if enabled */ rpcsrv_type = lp_parm_const_string(GLOBAL_SECTION_SNUM, - "rpc_server", "epmapper", + "rpc_server", + "epmapper", "none"); if (StrCaseCmp(rpcsrv_type, "none") == 0) { return NT_STATUS_OK; @@ -168,7 +169,8 @@ static NTSTATUS _rpc_ep_unregister(const struct ndr_interface_table *iface) /* start endpoint mapper only if enabled */ rpcsrv_type = lp_parm_const_string(GLOBAL_SECTION_SNUM, - "rpc_server", "epmapper", + "rpc_server", + "epmapper", "none"); if (StrCaseCmp(rpcsrv_type, "none") == 0) { return NT_STATUS_OK; @@ -600,7 +602,8 @@ bool dcesrv_ep_setup(struct tevent_context *ev_ctx, /* start endpoint mapper only if enabled */ rpcsrv_type = lp_parm_const_string(GLOBAL_SECTION_SNUM, - "rpc_server", "epmapper", + "rpc_server", + "epmapper", "none"); if (StrCaseCmp(rpcsrv_type, "embedded") == 0) { epmapper_cb.init = epmapper_init_cb; diff --git a/source3/smbd/server.c b/source3/smbd/server.c index c06eaa12e79..5d2abc0bd9f 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -37,6 +37,9 @@ #include "printing.h" #include "serverid.h" +extern void start_epmd(struct tevent_context *ev_ctx, + struct messaging_context *msg_ctx); + #ifdef WITH_DFS extern int dcelogin_atmost_once; #endif /* WITH_DFS */ @@ -1208,6 +1211,18 @@ extern void build_options(bool screen); return -1; } + if (is_daemon && !interactive) { + const char *rpcsrv_type; + + rpcsrv_type = lp_parm_const_string(GLOBAL_SECTION_SNUM, + "rpc_server", "epmapper", + "none"); + if (StrCaseCmp(rpcsrv_type, "daemon") == 0) { + start_epmd(smbd_event_context(), + smbd_server_conn->msg_ctx); + } + } + if (!dcesrv_ep_setup(smbd_event_context(), smbd_server_conn->msg_ctx)) { exit(1); } |