]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix auth https for libev.
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Tue, 24 Apr 2018 15:13:18 +0000 (15:13 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Tue, 24 Apr 2018 15:13:18 +0000 (15:13 +0000)
git-svn-id: file:///svn/unbound/trunk@4660 be551aaa-1e26-0410-a405-d3ace91eadb9

doc/Changelog
util/ub_event.c

index fb58b88a91d419920f8cccf40022a6176bf6f113..3ba74e349f674d57e2dc5b69c2b6c52ea884031d 100644 (file)
@@ -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
index fba2f2488296752496388ed90fab63b04ce08797..f3bcba678babecc62f6aec73a1e2aedf26137dfb 100644 (file)
@@ -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)