s3:libsmb: let cli_read_andx_create() accept any length
[Samba/gebeck_regimport.git] / source3 / rpc_server / rpc_config.h
blobd1c26dd3667811b58d18b00e6badcc9eed11d368
1 /*
2 * Unix SMB/CIFS implementation.
4 * SMBD RPC service config
6 * Copyright (c) 2011 Andreas Schneider <asn@samba.org>
7 * Copyright (C) 2011 Simo Sorce <idra@samba.org>
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.
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.
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/>.
23 #ifndef _RPC_CONFIG_H
24 #define _RPC_CONFIG_H
26 enum rpc_service_mode_e {
27 RPC_SERVICE_MODE_DISABLED = 0,
28 RPC_SERVICE_MODE_EMBEDDED,
29 RPC_SERVICE_MODE_EXTERNAL
32 /**
33 * @brief Get the mode in which service pipes are configured.
35 * @param name Name of the service
36 * @param def_mode The default mode for the service
38 * @return The actual configured mode.
40 enum rpc_service_mode_e rpc_service_mode(const char *name);
42 #define rpc_epmapper_mode() rpc_service_mode("epmapper")
43 #define rpc_spoolss_mode() rpc_service_mode("spoolss")
44 #define rpc_lsarpc_mode() rpc_service_mode("lsarpc")
45 #define rpc_samr_mode() rpc_service_mode("samr")
46 #define rpc_netlogon_mode() rpc_service_mode("netlogon")
50 enum rpc_daemon_type_e {
51 RPC_DAEMON_DISABLED = 0,
52 RPC_DAEMON_EMBEDDED,
53 RPC_DAEMON_FORK
56 /**
57 * @brief Get the mode in which a server is started.
59 * @param name Name of the rpc server
60 * @param def_type The default type for the server
62 * @return The actual configured type.
64 enum rpc_daemon_type_e rpc_daemon_type(const char *name);
66 #define rpc_epmapper_daemon() rpc_daemon_type("epmd")
67 #define rpc_spoolss_daemon() rpc_daemon_type("spoolssd")
68 #define rpc_lsasd_daemon() rpc_daemon_type("lsasd")
70 #endif /* _RPC_CONFIG_H */