mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05: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
|
16 February 2022: Wouter
|
||||||
- Fix for #628: fix rpz-passthru for qname trigger by localzone type.
|
- 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
|
# endif
|
||||||
# ifdef ENETDOWN
|
# ifdef ENETDOWN
|
||||||
case ENETDOWN:
|
case ENETDOWN:
|
||||||
|
# endif
|
||||||
|
# ifdef EADDRNOTAVAIL
|
||||||
|
case EADDRNOTAVAIL:
|
||||||
# endif
|
# endif
|
||||||
case EPERM:
|
case EPERM:
|
||||||
case EACCES:
|
case EACCES:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue