mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-08 20:52:05 -04:00
Merge branch '4215-add-isc_r_timedout-to-the-reasons-to-call-dns_zonemgr_unreachableadd-in-xfrin' into 'main'
Resolve "Add ISC_R_TIMEDOUT to the reasons to call dns_zonemgr_unreachableadd in xfrin" Closes #4215 See merge request isc-projects/bind9!8122
This commit is contained in:
commit
f66881c995
2 changed files with 7 additions and 2 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
6213. [bug] Mark a primary server as temporarily unreachable if the
|
||||
TCP connection attempt times out. [GL #4215]
|
||||
|
||||
6212. [placeholder]
|
||||
|
||||
6211. [func] Remove 'auto-dnssec'. This obsoletes the configuration
|
||||
|
|
|
|||
|
|
@ -1057,9 +1057,11 @@ failure:
|
|||
case ISC_R_NETUNREACH:
|
||||
case ISC_R_HOSTUNREACH:
|
||||
case ISC_R_CONNREFUSED:
|
||||
case ISC_R_TIMEDOUT:
|
||||
/*
|
||||
* Add the server to unreachable primaries table only if
|
||||
* the server has a permanent networking error.
|
||||
* Add the server to unreachable primaries table if
|
||||
* the server has a permanent networking error or
|
||||
* the connection attempt as timed out.
|
||||
*/
|
||||
zmgr = dns_zone_getmgr(xfr->zone);
|
||||
if (zmgr != NULL) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue