mirror of
https://github.com/mollyim/unbound.git
synced 2025-05-13 05:40:36 +01:00
- Fix that address not available is squelched from the logs for
udp connect failures. It is visible on verbosity 4 and more.
This commit is contained in:
parent
6de5310728
commit
a746d9693a
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
18 February 2022: Wouter
|
||||
- Fix that address not available is squelched from the logs for
|
||||
udp connect failures. It is visible on verbosity 4 and more.
|
||||
|
||||
16 February 2022: Wouter
|
||||
- Fix for #628: fix rpz-passthru for qname trigger by localzone type.
|
||||
|
||||
|
|
|
@ -1994,6 +1994,9 @@ static int udp_connect_needs_log(int err)
|
|||
# endif
|
||||
# ifdef ENETDOWN
|
||||
case ENETDOWN:
|
||||
# endif
|
||||
# ifdef EADDRNOTAVAIL
|
||||
case EADDRNOTAVAIL:
|
||||
# endif
|
||||
case EPERM:
|
||||
case EACCES:
|
||||
|
|
Loading…
Reference in a new issue