2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

Gracefully handle ISC_R_SHUTTINGDOWN in udp__send_cb

The ISC_R_SHUTTINGDOWN should be handled the same as ISC_R_CANCELED in
the udp__send_cb(), as we might be sending the data while the
loopmgr/netmgr shutdown has been initiated.
This commit is contained in:
Ondřej Surý
2022-10-11 12:29:48 +02:00
parent af257140e6
commit 076cdf7444

View File

@@ -774,6 +774,7 @@ udp__send_cb(isc_nmhandle_t *handle, isc_result_t eresult, void *cbarg) {
}
}
break;
case ISC_R_SHUTTINGDOWN:
case ISC_R_CANCELED:
break;
default: