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

2189. [bug] Handle socket() returning EINTR. [RT #15949]

This commit is contained in:
Mark Andrews
2007-05-21 01:55:10 +00:00
parent 68df4d65c6
commit 4bb0f1046f
2 changed files with 7 additions and 1 deletions

View File

@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: socket.c,v 1.271 2007/04/02 02:03:55 marka Exp $ */
/* $Id: socket.c,v 1.272 2007/05/21 01:55:10 marka Exp $ */
/*! \file */
@@ -1475,6 +1475,7 @@ isc_socket_create(isc_socketmgr_t *manager, int pf, isc_sockettype_t type,
#endif
char strbuf[ISC_STRERRORSIZE];
const char *err = "socket";
int try = 0;
REQUIRE(VALID_MANAGER(manager));
REQUIRE(socketp != NULL && *socketp == NULL);
@@ -1484,6 +1485,7 @@ isc_socket_create(isc_socketmgr_t *manager, int pf, isc_sockettype_t type,
return (result);
sock->pf = pf;
again:
switch (type) {
case isc_sockettype_udp:
sock->fd = socket(pf, SOCK_DGRAM, IPPROTO_UDP);
@@ -1498,6 +1500,8 @@ isc_socket_create(isc_socketmgr_t *manager, int pf, isc_sockettype_t type,
INSIST(type != isc_sockettype_fdwatch);
break;
}
if (sock->fd == -1 && errno == EINTR && try++ < 42)
goto again;
#ifdef F_DUPFD
/*