mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 14:07:59 +00:00
3638. [cleanup] Add the ability to handle ENOPROTOOPT in case it is
encountered. [RT #34668]
This commit is contained in:
parent
4b2c089cd8
commit
c4348cb50f
3
CHANGES
3
CHANGES
@ -1,3 +1,6 @@
|
|||||||
|
3638. [cleanup] Add the ability to handle ENOPROTOOPT in case it is
|
||||||
|
encountered. [RT #34668]
|
||||||
|
|
||||||
3637. [bug] 'allow-query-on' was checking the source address
|
3637. [bug] 'allow-query-on' was checking the source address
|
||||||
rather than the destination address. [RT #34590]
|
rather than the destination address. [RT #34590]
|
||||||
|
|
||||||
|
@ -1845,6 +1845,10 @@ doio_recv(isc__socket_t *sock, isc_socketevent_t *dev) {
|
|||||||
/* HPUX 11.11 can return EADDRNOTAVAIL. */
|
/* HPUX 11.11 can return EADDRNOTAVAIL. */
|
||||||
SOFT_OR_HARD(EADDRNOTAVAIL, ISC_R_ADDRNOTAVAIL);
|
SOFT_OR_HARD(EADDRNOTAVAIL, ISC_R_ADDRNOTAVAIL);
|
||||||
ALWAYS_HARD(ENOBUFS, ISC_R_NORESOURCES);
|
ALWAYS_HARD(ENOBUFS, ISC_R_NORESOURCES);
|
||||||
|
/* Should never get this one but it was seen. */
|
||||||
|
#ifdef ENOPROTOOPT
|
||||||
|
SOFT_OR_HARD(ENOPROTOOPT, ISC_R_HOSTUNREACH);
|
||||||
|
#endif
|
||||||
/*
|
/*
|
||||||
* HPUX returns EPROTO and EINVAL on receiving some ICMP/ICMPv6
|
* HPUX returns EPROTO and EINVAL on receiving some ICMP/ICMPv6
|
||||||
* errors.
|
* errors.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user