1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

smb.conf.5: Mark "dgram port" and "nbt port" as deprecated

These are not honored in the source3 codebase, so keeping them is confusing.

Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Jelmer Vernooij <jelmer@samba.org>
BUG: https://bugzilla.samba.org/show_bug.cgi?id=11126
This commit is contained in:
Andrew Bartlett 2015-03-01 20:00:05 +13:00
parent 67c041ab76
commit c253f956ef
3 changed files with 8 additions and 3 deletions

View File

@ -6,6 +6,7 @@
<description>
<para>Specifies which ports the server should listen on for NetBIOS datagram traffic.</para>
</description>
<para>This parameter is deprecated, as it is not honoured in the
majority of the code base.</para>
<value type="default">138</value>
</samba:parameter>

View File

@ -8,5 +8,7 @@
services traffic.</para>
</description>
<para>This parameter is deprecated, as it is not honoured in the
majority of the code base.</para>
<value type="default">137</value>
</samba:parameter>

View File

@ -1707,7 +1707,8 @@ struct parm_struct parm_table[] = {
.p_class = P_GLOBAL,
.offset = GLOBAL_VAR(dgram_port),
.special = NULL,
.enum_list = NULL
.enum_list = NULL,
.flags = FLAG_DEPRECATED
},
{
.label = "nbt port",
@ -1715,7 +1716,8 @@ struct parm_struct parm_table[] = {
.p_class = P_GLOBAL,
.offset = GLOBAL_VAR(nbt_port),
.special = NULL,
.enum_list = NULL
.enum_list = NULL,
.flags = FLAG_DEPRECATED
},
{
.label = "krb5 port",