]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix to add tls-service-key to memory printout for fast_reload.
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Fri, 13 Mar 2026 15:49:34 +0000 (16:49 +0100)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Fri, 13 Mar 2026 15:49:34 +0000 (16:49 +0100)
daemon/remote.c
doc/Changelog

index 3984ef6e44cc24c32ed11cde5506f089b689340d..dd0e8f29907905dcaf9ee74f5f3a2c5238416819 100644 (file)
@@ -5325,6 +5325,8 @@ fr_printmem(struct fast_reload_thread* fr,
        size_t mem = 0;
        if(fr_poll_for_quit(fr))
                return 1;
+       mem += getmem_str(ct->ssl_service_key);
+       mem += getmem_str(ct->ssl_service_pem);
        mem += views_get_mem(ct->views);
        mem += respip_set_get_mem(ct->respip_set);
        mem += auth_zones_get_mem(ct->auth_zones);
index 94f2eb53cc958778a20d7c1d04cfd146e7048776..396a2c3b69077642ff3b9be430fdf8896a4a6f01 100644 (file)
@@ -12,6 +12,7 @@
          and tls-cert-bundle changes. It checks the modification time of
          the tls-service-key and tls-service-pem files for update.
        - Fix detection of http listening port in fast_reload.
+       - Fix to add tls-service-key to memory printout for fast_reload.
 
 9 March 2026: Wouter
        - Fix compile failure in unbound-checkconf for older gcc compiler.