mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Fix auth https for libev.
git-svn-id: file:///svn/unbound/trunk@4660 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
a55df65bc9
commit
583411768d
2 changed files with 4 additions and 0 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
24 April 2018: Wouter
|
24 April 2018: Wouter
|
||||||
- Fix contrib/fastrpz.patch for this release.
|
- Fix contrib/fastrpz.patch for this release.
|
||||||
|
- Fix auth https for libev.
|
||||||
|
|
||||||
24 April 2018: Ralph
|
24 April 2018: Ralph
|
||||||
- Added root-key-sentinel support
|
- Added root-key-sentinel support
|
||||||
|
|
|
||||||
|
|
@ -95,6 +95,7 @@ UB_EV_BITS_CB(comm_timer_callback)
|
||||||
UB_EV_BITS_CB(comm_signal_callback)
|
UB_EV_BITS_CB(comm_signal_callback)
|
||||||
UB_EV_BITS_CB(comm_point_local_handle_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_raw_handle_callback)
|
||||||
|
UB_EV_BITS_CB(comm_point_http_handle_callback)
|
||||||
UB_EV_BITS_CB(tube_handle_signal)
|
UB_EV_BITS_CB(tube_handle_signal)
|
||||||
UB_EV_BITS_CB(comm_base_handle_slow_accept)
|
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;
|
return my_comm_point_local_handle_callback;
|
||||||
else if(cb == comm_point_raw_handle_callback)
|
else if(cb == comm_point_raw_handle_callback)
|
||||||
return my_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)
|
else if(cb == tube_handle_signal)
|
||||||
return my_tube_handle_signal;
|
return my_tube_handle_signal;
|
||||||
else if(cb == comm_base_handle_slow_accept)
|
else if(cb == comm_base_handle_slow_accept)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue