]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
CVE-2016-2115(<=4.3): docs-xml: add "client ipc min protocol" and "client ipc max...
authorRalph Boehme <slow@samba.org>
Fri, 18 Mar 2016 07:58:32 +0000 (08:58 +0100)
committerStefan Metzmacher <metze@samba.org>
Wed, 30 Mar 2016 02:07:59 +0000 (04:07 +0200)
BUG: https://bugzilla.samba.org/show_bug.cgi?id=11796

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
lib/param/param_table.c

index 09d0fe9181bbe1a8631f364ea7427eb9ba476424..9d12b6690214ce7d9d9cb4d652fc4bba9768f299 100644 (file)
@@ -4492,6 +4492,22 @@ struct parm_struct parm_table[] = {
                .special        = NULL,
                .enum_list      = enum_tls_verify_peer_vals,
        },
+       {
+               .label          = "client ipc max protocol",
+               .type           = P_ENUM,
+               .p_class        = P_GLOBAL,
+               .offset         = GLOBAL_VAR(_client_ipc_max_protocol),
+               .special        = NULL,
+               .enum_list      = enum_protocol,
+       },
+       {
+               .label          = "client ipc min protocol",
+               .type           = P_ENUM,
+               .p_class        = P_GLOBAL,
+               .offset         = GLOBAL_VAR(_client_ipc_min_protocol),
+               .special        = NULL,
+               .enum_list      = enum_protocol,
+       },
 
        {NULL,  P_BOOL,  P_NONE,  0,  NULL,  NULL,  0}
 };