aboutsummaryrefslogtreecommitdiff
path: root/lib/net.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/net.c')
-rw-r--r--lib/net.c16
1 files changed, 3 insertions, 13 deletions
diff --git a/lib/net.c b/lib/net.c
index 02354444..2bb720a4 100644
--- a/lib/net.c
+++ b/lib/net.c
@@ -37,7 +37,7 @@ struct addrinfo *xgetaddrinfo(char *host, char *port, int family, int socktype,
return ai;
}
-static int xconnbind(struct addrinfo *ai_arg, int dobind)
+int xconnbind(struct addrinfo *ai_arg, int dobind)
{
struct addrinfo *ai;
int fd = -1, one = 1;
@@ -56,27 +56,17 @@ static int xconnbind(struct addrinfo *ai_arg, int dobind)
return fd;
}
-int xconnectany(struct addrinfo *ai)
+int xconnect(struct addrinfo *ai)
{
return xconnbind(ai, 0);
}
-int xbindany(struct addrinfo *ai)
+int xbind(struct addrinfo *ai)
{
return xconnbind(ai, 1);
}
-void xbind(int fd, const struct sockaddr *sa, socklen_t len)
-{
- if (bind(fd, sa, len)) perror_exit("bind");
-}
-
-void xconnect(int fd, const struct sockaddr *sa, socklen_t len)
-{
- if (connect(fd, sa, len)) perror_exit("connect");
-}
-
int xpoll(struct pollfd *fds, int nfds, int timeout)
{
int i;