/* ISC license. */ #include #include #include #include #include #include #include int socket_connect4 (int s, char const *ip, uint16_t port) { int e = errno ; int r ; struct sockaddr_in sa ; memset(&sa, 0, sizeof sa) ; sa.sin_family = AF_INET ; sa.sin_port = uint16_big(port) ; memcpy(&sa.sin_addr.s_addr, ip, 4) ; do r = connect(s, (struct sockaddr *)&sa, sizeof sa) ; while (r == -1 && errno == EINTR) ; if (r == -1 && errno == EALREADY) errno = EINPROGRESS ; if (r >= 0) errno = e ; return r ; }