mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-27 18:20:02 -05:00
- Fix tls-* and ssl-* documented alternate syntax to also be available
through remote-control and unbound-checkconf.
This commit is contained in:
parent
d10562c823
commit
c49e87e1b7
2 changed files with 18 additions and 0 deletions
|
|
@ -1,3 +1,7 @@
|
|||
29 January 2022: George
|
||||
- Fix tls-* and ssl-* documented alternate syntax to also be available
|
||||
through remote-control and unbound-checkconf.
|
||||
|
||||
26 January 2022: George
|
||||
- Fix #599: [FR] RFC 9156 (obsoletes RFC 7816), by noting the new RFC
|
||||
document.
|
||||
|
|
|
|||
|
|
@ -531,11 +531,17 @@ int config_set_option(struct config_file* cfg, const char* opt,
|
|||
else S_YNO("edns-tcp-keepalive:", do_tcp_keepalive)
|
||||
else S_NUMBER_NONZERO("edns-tcp-keepalive-timeout:", tcp_keepalive_timeout)
|
||||
else S_YNO("ssl-upstream:", ssl_upstream)
|
||||
else S_YNO("tls-upstream:", ssl_upstream)
|
||||
else S_STR("ssl-service-key:", ssl_service_key)
|
||||
else S_STR("tls-service-key:", ssl_service_key)
|
||||
else S_STR("ssl-service-pem:", ssl_service_pem)
|
||||
else S_STR("tls-service-pem:", ssl_service_pem)
|
||||
else S_NUMBER_NONZERO("ssl-port:", ssl_port)
|
||||
else S_NUMBER_NONZERO("tls-port:", ssl_port)
|
||||
else S_STR("ssl-cert-bundle:", tls_cert_bundle)
|
||||
else S_STR("tls-cert-bundle:", tls_cert_bundle)
|
||||
else S_YNO("tls-win-cert:", tls_win_cert)
|
||||
else S_STRLIST("additional-ssl-port:", tls_additional_port)
|
||||
else S_STRLIST("additional-tls-port:", tls_additional_port)
|
||||
else S_STRLIST("tls-additional-ports:", tls_additional_port)
|
||||
else S_STRLIST("tls-additional-port:", tls_additional_port)
|
||||
|
|
@ -1029,11 +1035,19 @@ config_get_option(struct config_file* cfg, const char* opt,
|
|||
else O_YNO(opt, "edns-tcp-keepalive", do_tcp_keepalive)
|
||||
else O_DEC(opt, "edns-tcp-keepalive-timeout", tcp_keepalive_timeout)
|
||||
else O_YNO(opt, "ssl-upstream", ssl_upstream)
|
||||
else O_YNO(opt, "tls-upstream", ssl_upstream)
|
||||
else O_STR(opt, "ssl-service-key", ssl_service_key)
|
||||
else O_STR(opt, "tls-service-key", ssl_service_key)
|
||||
else O_STR(opt, "ssl-service-pem", ssl_service_pem)
|
||||
else O_STR(opt, "tls-service-pem", ssl_service_pem)
|
||||
else O_DEC(opt, "ssl-port", ssl_port)
|
||||
else O_DEC(opt, "tls-port", ssl_port)
|
||||
else O_STR(opt, "ssl-cert-bundle", tls_cert_bundle)
|
||||
else O_STR(opt, "tls-cert-bundle", tls_cert_bundle)
|
||||
else O_YNO(opt, "tls-win-cert", tls_win_cert)
|
||||
else O_LST(opt, "additional-ssl-port", tls_additional_port)
|
||||
else O_LST(opt, "additional-tls-port", tls_additional_port)
|
||||
else O_LST(opt, "tls-additional-ports", tls_additional_port)
|
||||
else O_LST(opt, "tls-additional-port", tls_additional_port)
|
||||
else O_LST(opt, "tls-session-ticket-keys", tls_session_ticket_keys.first)
|
||||
else O_STR(opt, "tls-ciphers", tls_ciphers)
|
||||
|
|
|
|||
Loading…
Reference in a new issue