2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

1334. [port] Handle ECONNRESET from sendmsg() [unix].

This commit is contained in:
Mark Andrews
2002-06-26 00:12:54 +00:00
parent ac65e45126
commit 33c5380153
2 changed files with 4 additions and 1 deletions

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: socket.c,v 1.227 2002/06/03 06:31:16 marka Exp $ */
/* $Id: socket.c,v 1.228 2002/06/26 00:12:54 marka Exp $ */
#include <config.h>
@@ -1092,6 +1092,7 @@ doio_send(isc_socket_t *sock, isc_socketevent_t *dev) {
ALWAYS_HARD(ENOBUFS, ISC_R_NORESOURCES);
ALWAYS_HARD(EPERM, ISC_R_HOSTUNREACH);
ALWAYS_HARD(EPIPE, ISC_R_NOTCONNECTED);
ALWAYS_HARD(ECONNRESET, ISC_R_CONNECTIONRESET);
#undef SOFT_OR_HARD
#undef ALWAYS_HARD