From 583411768dfe5b83b8d87137f3cd273d21af50b1 Mon Sep 17 00:00:00 2001 From: Wouter Wijngaards Date: Tue, 24 Apr 2018 15:13:18 +0000 Subject: [PATCH] - Fix auth https for libev. git-svn-id: file:///svn/unbound/trunk@4660 be551aaa-1e26-0410-a405-d3ace91eadb9 --- doc/Changelog | 1 + util/ub_event.c | 3 +++ 2 files changed, 4 insertions(+) diff --git a/doc/Changelog b/doc/Changelog index fb58b88a9..3ba74e349 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,5 +1,6 @@ 24 April 2018: Wouter - Fix contrib/fastrpz.patch for this release. + - Fix auth https for libev. 24 April 2018: Ralph - Added root-key-sentinel support diff --git a/util/ub_event.c b/util/ub_event.c index fba2f2488..f3bcba678 100644 --- a/util/ub_event.c +++ b/util/ub_event.c @@ -95,6 +95,7 @@ UB_EV_BITS_CB(comm_timer_callback) UB_EV_BITS_CB(comm_signal_callback) UB_EV_BITS_CB(comm_point_local_handle_callback) UB_EV_BITS_CB(comm_point_raw_handle_callback) +UB_EV_BITS_CB(comm_point_http_handle_callback) UB_EV_BITS_CB(tube_handle_signal) UB_EV_BITS_CB(comm_base_handle_slow_accept) @@ -116,6 +117,8 @@ static void (*NATIVE_BITS_CB(void (*cb)(int, short, void*)))(int, short, void*) return my_comm_point_local_handle_callback; else if(cb == comm_point_raw_handle_callback) return my_comm_point_raw_handle_callback; + else if(cb == comm_point_http_handle_callback) + return my_comm_point_http_handle_callback; else if(cb == tube_handle_signal) return my_tube_handle_signal; else if(cb == comm_base_handle_slow_accept)