From: Ralph Boehme Date: Fri, 18 Mar 2016 07:58:32 +0000 (+0100) Subject: CVE-2016-2115(<=4.3): docs-xml: add "client ipc min protocol" and "client ipc max... X-Git-Tag: samba-4.2.10~136 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7c7f42fb382bdd3dda43ed3cda8f9e60b75ac510;p=thirdparty%2Fsamba.git CVE-2016-2115(<=4.3): docs-xml: add "client ipc min protocol" and "client ipc max protocol" options BUG: https://bugzilla.samba.org/show_bug.cgi?id=11796 Signed-off-by: Ralph Boehme Reviewed-by: Stefan Metzmacher --- diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 09d0fe9181b..9d12b669021 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -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} };