mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Make sockstop netievent a high-priority one
Seemingly by omission, sockstop netievent used by multi-layer sockets was not a high priority event, like it should be (similarly to other socket types). In particular, that could make BIND stuck on reconfiguration after a DoH-listener is removed from the configuration. This commit fixes that.
This commit is contained in:
parent
18d662f4d2
commit
9ab6c3a5b1
1 changed files with 1 additions and 1 deletions
|
|
@ -333,7 +333,6 @@ typedef enum isc__netievent_type {
|
|||
netievent_privilegedtask,
|
||||
|
||||
netievent_settlsctx,
|
||||
netievent_sockstop, /* for multilayer sockets */
|
||||
|
||||
/*
|
||||
* event type values higher than this will be treated
|
||||
|
|
@ -350,6 +349,7 @@ typedef enum isc__netievent_type {
|
|||
netievent_tcpdnsstop,
|
||||
netievent_tlsdnslisten,
|
||||
netievent_tlsdnsstop,
|
||||
netievent_sockstop, /* for multilayer sockets */
|
||||
|
||||
netievent_resume,
|
||||
netievent_detach,
|
||||
|
|
|
|||
Loading…
Reference in a new issue