mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 09:09:59 -04:00
Restore ignoring ISC_R_CONNREFUSED in connect_read_cb
In ac4cc8443d, the ISC_R_CONNREFUSED was
removed in connect_read_cb, but it can actually happen in the udp_test:
[ RUN ] udp_recv_send
connect_read_cb(0x7f2c2801a270, connection refused, (nil))
This commit is contained in:
parent
07a9bf4a88
commit
ed37949d5f
1 changed files with 1 additions and 0 deletions
|
|
@ -334,6 +334,7 @@ connect_read_cb(isc_nmhandle_t *handle, isc_result_t eresult,
|
|||
case ISC_R_SHUTTINGDOWN:
|
||||
case ISC_R_CANCELED:
|
||||
case ISC_R_CONNECTIONRESET:
|
||||
case ISC_R_CONNREFUSED:
|
||||
break;
|
||||
default:
|
||||
fprintf(stderr, "%s(%p, %s, %p)\n", __func__, handle,
|
||||
|
|
|
|||
Loading…
Reference in a new issue