From 9247e8522be9de00038fd6975c5da4e246d003bb Mon Sep 17 00:00:00 2001 From: Wouter Wijngaards Date: Thu, 5 Oct 2017 10:37:34 +0000 Subject: [PATCH] - Fix trust-anchor-signaling works in libunbound. git-svn-id: file:///svn/unbound/trunk@4362 be551aaa-1e26-0410-a405-d3ace91eadb9 --- doc/Changelog | 3 +++ libunbound/libworker.c | 1 + 2 files changed, 4 insertions(+) diff --git a/doc/Changelog b/doc/Changelog index 77699b52d..ab42d99f3 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +5 October 2017: Wouter + - Fix trust-anchor-signaling works in libunbound. + 5 October 2017: Ralph - Set trust-anchor-signaling default to yes diff --git a/libunbound/libworker.c b/libunbound/libworker.c index 8cf4fab29..4067ef4d2 100644 --- a/libunbound/libworker.c +++ b/libunbound/libworker.c @@ -251,6 +251,7 @@ libworker_setup(struct ub_ctx* ctx, int is_bg, struct ub_event_base* eb) w->env->send_query = &libworker_send_query; w->env->detach_subs = &mesh_detach_subs; w->env->attach_sub = &mesh_attach_sub; + w->env->add_sub = &mesh_add_sub; w->env->kill_sub = &mesh_state_delete; w->env->detect_cycle = &mesh_detect_cycle; comm_base_timept(w->base, &w->env->now, &w->env->now_tv);