s3-rpc_server: Move config helpers in one place.
[idra/samba.git] / source3 / rpc_server / rpc_config.h
1 /*
2  *  Unix SMB/CIFS implementation.
3  *
4  *  SMBD RPC service config
5  *
6  *  Copyright (c) 2011      Andreas Schneider <asn@samba.org>
7  *  Copyright (C) 2011      Simo Sorce <idra@samba.org>
8  *
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation; either version 3 of the License, or
12  *  (at your option) any later version.
13  *
14  *  This program is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  *
19  *  You should have received a copy of the GNU General Public License
20  *  along with this program; if not, see <http://www.gnu.org/licenses/>.
21  */
22
23 #ifndef _RPC_CONFIG_H
24 #define _RPC_CONFIG_H
25
26 enum rpc_service_mode_e {
27         RPC_SERVICE_MODE_DISABLED = 0,
28         RPC_SERVICE_MODE_EMBEDDED,
29         RPC_SERVICE_MODE_EXTERNAL,
30         RPC_SERVICE_MODE_DAEMON
31 };
32
33 /**
34  * @brief Get the mode in which service pipes are configured.
35  *
36  * @param name          Name of the service
37  * @param def_mode      The default mode for the service
38  *
39  * @return The actual configured mode.
40  */
41 enum rpc_service_mode_e rpc_service_mode(const char *name);
42
43 #define rpc_epmapper_mode() rpc_service_mode("epmapper")
44 #define rpc_spoolss_mode() rpc_service_mode("spoolss")
45 #define rpc_lsarpc_mode() rpc_service_mode("lsarpc")
46 #define rpc_samr_mode() rpc_service_mode("samr")
47 #define rpc_netlogon_mode() rpc_service_mode("netlogon")
48
49
50
51 enum rpc_daemon_type_e {
52         RPC_DAEMON_DISABLED = 0,
53         RPC_DAEMON_EMBEDDED,
54         RPC_DAEMON_FORK
55 };
56
57 /**
58  * @brief Get the mode in which a server is started.
59  *
60  * @param name          Name of the rpc server
61  * @param def_type      The default type for the server
62  *
63  * @return The actual configured type.
64  */
65 enum rpc_daemon_type_e rpc_daemon_type(const char *name);
66
67 #define rpc_epmapper_daemon() rpc_daemon_type("epmd")
68 #define rpc_spoolss_daemon() rpc_daemon_type("spoolssd")
69 #define rpc_lsasd_daemon() rpc_daemon_type("lsasd")
70
71 #endif /* _RPC_CONFIG_H */