mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 08:50:00 -04:00
Deprecate the "tkey-domain" statement
Mark the "tkey-domain" statement as deprecated since it is only used by code implementing TKEY Mode 2 (Diffie-Hellman), which was removed from newer BIND 9 branches.
This commit is contained in:
parent
2705307f81
commit
6e3203a5b5
2 changed files with 2 additions and 2 deletions
|
|
@ -299,7 +299,7 @@ options {
|
|||
tcp-receive-buffer <integer>;
|
||||
tcp-send-buffer <integer>;
|
||||
tkey-dhkey <quoted_string> <integer>; // deprecated
|
||||
tkey-domain <quoted_string>;
|
||||
tkey-domain <quoted_string>; // deprecated
|
||||
tkey-gssapi-credential <quoted_string>; // deprecated
|
||||
tkey-gssapi-keytab <quoted_string>;
|
||||
tls-port <integer>;
|
||||
|
|
|
|||
|
|
@ -1339,7 +1339,7 @@ static cfg_clausedef_t options_clauses[] = {
|
|||
{ "tcp-receive-buffer", &cfg_type_uint32, 0 },
|
||||
{ "tcp-send-buffer", &cfg_type_uint32, 0 },
|
||||
{ "tkey-dhkey", &cfg_type_tkey_dhkey, CFG_CLAUSEFLAG_DEPRECATED },
|
||||
{ "tkey-domain", &cfg_type_qstring, 0 },
|
||||
{ "tkey-domain", &cfg_type_qstring, CFG_CLAUSEFLAG_DEPRECATED },
|
||||
{ "tkey-gssapi-credential", &cfg_type_qstring,
|
||||
CFG_CLAUSEFLAG_DEPRECATED },
|
||||
{ "tkey-gssapi-keytab", &cfg_type_qstring, 0 },
|
||||
|
|
|
|||
Loading…
Reference in a new issue