static
#endif
-int net_connect_ip(const struct ip_addr *ip, unsigned int port,
- const struct ip_addr *my_ip)
+static int net_connect_ip_full(const struct ip_addr *ip, unsigned int port,
+ const struct ip_addr *my_ip, bool blocking)
{
union sockaddr_union so;
int fd, ret, opt = 1;
/* set socket options */
setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt));
setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &opt, sizeof(opt));
- net_set_nonblock(fd, TRUE);
+ if (!blocking)
+ net_set_nonblock(fd, TRUE);
/* set our own address */
if (my_ip != NULL) {
return fd;
}
+int net_connect_ip(const struct ip_addr *ip, unsigned int port,
+ const struct ip_addr *my_ip)
+{
+ return net_connect_ip_full(ip, port, my_ip, FALSE);
+}
+
+int net_connect_ip_blocking(const struct ip_addr *ip, unsigned int port,
+ const struct ip_addr *my_ip)
+{
+ return net_connect_ip_full(ip, port, my_ip, TRUE);
+}
+
int net_try_bind(const struct ip_addr *ip)
{
union sockaddr_union so;
int net_ip_cmp(const struct ip_addr *ip1, const struct ip_addr *ip2);
unsigned int net_ip_hash(const struct ip_addr *ip);
-/* Connect to socket with ip address */
+/* Connect to socket with ip address. The socket and connect() is
+ non-blocking. */
int net_connect_ip(const struct ip_addr *ip, unsigned int port,
const struct ip_addr *my_ip);
+/* Like net_connect_ip(), but do a blocking connect(). */
+int net_connect_ip_blocking(const struct ip_addr *ip, unsigned int port,
+ const struct ip_addr *my_ip);
/* Returns 0 if we can bind() as given IP, -1 if not. */
int net_try_bind(const struct ip_addr *ip);
/* Connect to named UNIX socket */