smbd: Slightly simplify create_file_unixpath()
[Samba.git] / source3 / rpc_server / rpcd_epmapper.c
blob950ba7ec12a229eaf57cf7f8883cb2a14246f443
1 /*
2 * Unix SMB/CIFS implementation.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 #include "replace.h"
19 #include "rpc_worker.h"
20 #include "librpc/gen_ndr/ndr_epmapper.h"
21 #include "librpc/gen_ndr/ndr_epmapper_scompat.h"
23 static size_t epmapper_interfaces(
24 const struct ndr_interface_table ***pifaces,
25 void *private_data)
27 static const struct ndr_interface_table *ifaces[] = {
28 &ndr_table_epmapper,
30 *pifaces = ifaces;
31 return ARRAY_SIZE(ifaces);
34 static size_t epmapper_servers(
35 struct dcesrv_context *dce_ctx,
36 const struct dcesrv_endpoint_server ***_ep_servers,
37 void *private_data)
39 static const struct dcesrv_endpoint_server *ep_servers[] = { NULL };
41 ep_servers[0] = epmapper_get_ep_server();
43 *_ep_servers = ep_servers;
44 return ARRAY_SIZE(ep_servers);
47 int main(int argc, const char *argv[])
49 return rpc_worker_main(
50 argc,
51 argv,
52 "rpcd_epmapper",
54 10,
55 epmapper_interfaces,
56 epmapper_servers,
57 NULL);