From: W.C.A. Wijngaards Date: Fri, 13 Mar 2026 15:49:34 +0000 (+0100) Subject: - Fix to add tls-service-key to memory printout for fast_reload. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8656cfd4c82a2db6de59b08eae4300ae39ceecc3;p=thirdparty%2Funbound.git - Fix to add tls-service-key to memory printout for fast_reload. --- diff --git a/daemon/remote.c b/daemon/remote.c index 3984ef6e4..dd0e8f299 100644 --- a/daemon/remote.c +++ b/daemon/remote.c @@ -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); diff --git a/doc/Changelog b/doc/Changelog index 94f2eb53c..396a2c3b6 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -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.