]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix that http settings have colon in set_option, for
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Mon, 19 Oct 2020 07:06:33 +0000 (09:06 +0200)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Mon, 19 Oct 2020 07:06:33 +0000 (09:06 +0200)
  http-endpoint, http-max-streams, http-query-buffer-size,
  http-response-buffer-size, and http-nodelay.

doc/Changelog
util/config_file.c

index 3f291bed662cc906eede3c968f99f7638b29f558..8a8e7ffe17dffa57f06dcd18db07e2500b8fc56b 100644 (file)
@@ -1,3 +1,8 @@
+19 October 2020: Wouter
+       - Fix that http settings have colon in set_option, for
+         http-endpoint, http-max-streams, http-query-buffer-size,
+         http-response-buffer-size, and http-nodelay.
+
 16 October 2020: Wouter
        - Fix that the out of order TCP processing does not limit the
          number of outstanding queries over a connection.
index b789c3359979a421d7790901220cda467db522c6..25cba18b75f77395a0e815e2a33374fdc224aea4 100644 (file)
@@ -522,11 +522,11 @@ int config_set_option(struct config_file* cfg, const char* opt,
        else S_STR("tls-ciphersuites:", tls_ciphersuites)
        else S_YNO("tls-use-sni:", tls_use_sni)
        else S_NUMBER_NONZERO("https-port:", https_port)
-       else S_STR("http-endpoint", http_endpoint)
-       else S_NUMBER_NONZERO("http-max-streams", http_max_streams)
-       else S_MEMSIZE("http-query-buffer-size", http_query_buffer_size)
-       else S_MEMSIZE("http-response-buffer-size", http_response_buffer_size)
-       else S_YNO("http-nodelay", http_nodelay)
+       else S_STR("http-endpoint:", http_endpoint)
+       else S_NUMBER_NONZERO("http-max-streams:", http_max_streams)
+       else S_MEMSIZE("http-query-buffer-size:", http_query_buffer_size)
+       else S_MEMSIZE("http-response-buffer-size:", http_response_buffer_size)
+       else S_YNO("http-nodelay:", http_nodelay)
        else S_YNO("interface-automatic:", if_automatic)
        else S_YNO("use-systemd:", use_systemd)
        else S_YNO("do-daemonize:", do_daemonize)