2 Unix SMB/CIFS implementation.
3 Parameter loading functions
4 Copyright (C) Karl Auer 1993-1998
6 Largely re-written by Andrew Tridgell, September 1994
8 Copyright (C) Simo Sorce 2001
9 Copyright (C) Alexander Bokovoy 2002
10 Copyright (C) Stefan (metze) Metzmacher 2002
11 Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2003
12 Copyright (C) Michael Adam 2008
13 Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007
14 Copyright (C) Andrew Bartlett 2011
16 This program is free software; you can redistribute it and/or modify
17 it under the terms of the GNU General Public License as published by
18 the Free Software Foundation; either version 3 of the License, or
19 (at your option) any later version.
21 This program is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 GNU General Public License for more details.
26 You should have received a copy of the GNU General Public License
27 along with this program. If not, see <http://www.gnu.org/licenses/>.
30 static const struct enum_list enum_protocol
[] = {
31 {PROTOCOL_SMB2_02
, "SMB2"}, /* for now keep PROTOCOL_SMB2_02 */
32 {PROTOCOL_SMB3_00
, "SMB3"}, /* for now keep PROTOCOL_SMB3_00 */
33 {PROTOCOL_SMB3_00
, "SMB3_00"},
34 {PROTOCOL_SMB2_24
, "SMB2_24"},
35 {PROTOCOL_SMB2_22
, "SMB2_22"},
36 {PROTOCOL_SMB2_10
, "SMB2_10"},
37 {PROTOCOL_SMB2_02
, "SMB2_02"},
38 {PROTOCOL_NT1
, "NT1"},
39 {PROTOCOL_LANMAN2
, "LANMAN2"},
40 {PROTOCOL_LANMAN1
, "LANMAN1"},
41 {PROTOCOL_CORE
, "CORE"},
42 {PROTOCOL_COREPLUS
, "COREPLUS"},
43 {PROTOCOL_COREPLUS
, "CORE+"},
47 static const struct enum_list enum_security
[] = {
50 {SEC_DOMAIN
, "DOMAIN"},
51 #if (defined(HAVE_ADS) || _SAMBA_BUILD_ >= 4)
57 static const struct enum_list enum_bool_auto
[] = {
68 static const struct enum_list enum_csc_policy
[] = {
69 {CSC_POLICY_MANUAL
, "manual"},
70 {CSC_POLICY_DOCUMENTS
, "documents"},
71 {CSC_POLICY_PROGRAMS
, "programs"},
72 {CSC_POLICY_DISABLE
, "disable"},
76 /* Server role options */
77 static const struct enum_list enum_server_role
[] = {
79 {ROLE_STANDALONE
, "standalone server"},
80 {ROLE_STANDALONE
, "standalone"},
81 {ROLE_DOMAIN_MEMBER
, "member server"},
82 {ROLE_DOMAIN_MEMBER
, "member"},
83 {ROLE_DOMAIN_PDC
, "classic primary domain controller"},
84 {ROLE_DOMAIN_BDC
, "classic backup domain controller"},
85 {ROLE_ACTIVE_DIRECTORY_DC
, "active directory domain controller"},
86 {ROLE_ACTIVE_DIRECTORY_DC
, "domain controller"},
87 {ROLE_ACTIVE_DIRECTORY_DC
, "dc"},
91 /* SMB signing types. */
92 static const struct enum_list enum_smb_signing_vals
[] = {
93 {SMB_SIGNING_DEFAULT
, "default"},
94 {SMB_SIGNING_OFF
, "No"},
95 {SMB_SIGNING_OFF
, "False"},
96 {SMB_SIGNING_OFF
, "0"},
97 {SMB_SIGNING_OFF
, "Off"},
98 {SMB_SIGNING_OFF
, "disabled"},
99 {SMB_SIGNING_IF_REQUIRED
, "if_required"},
100 {SMB_SIGNING_IF_REQUIRED
, "Yes"},
101 {SMB_SIGNING_IF_REQUIRED
, "True"},
102 {SMB_SIGNING_IF_REQUIRED
, "1"},
103 {SMB_SIGNING_IF_REQUIRED
, "On"},
104 {SMB_SIGNING_IF_REQUIRED
, "enabled"},
105 {SMB_SIGNING_IF_REQUIRED
, "auto"},
106 {SMB_SIGNING_REQUIRED
, "required"},
107 {SMB_SIGNING_REQUIRED
, "mandatory"},
108 {SMB_SIGNING_REQUIRED
, "force"},
109 {SMB_SIGNING_REQUIRED
, "forced"},
110 {SMB_SIGNING_REQUIRED
, "enforced"},
114 /* DNS update options. */
115 static const struct enum_list enum_dns_update_settings
[] = {
116 {DNS_UPDATE_OFF
, "False"},
117 {DNS_UPDATE_ON
, "True"},
118 {DNS_UPDATE_SIGNED
, "signed"},