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:
Artem Boldariev 2023-05-16 18:44:04 +03:00
parent 18d662f4d2
commit 9ab6c3a5b1

View file

@ -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,