aboutsummaryrefslogtreecommitdiff
path: root/toys
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2017-07-17 05:23:45 -0500
committerRob Landley <rob@landley.net>2017-07-17 05:23:45 -0500
commit92b6026fa55eb1a6d76dfa549e173fc7b863dda5 (patch)
tree93d148eee63cb4aea260f3faad60ba60b75fe43e /toys
parentd4adb3f8e2ec39674e34ed518983ed6e85560c91 (diff)
downloadtoybox-92b6026fa55eb1a6d76dfa549e173fc7b863dda5.tar.gz
Split out xgetaddrinfo() from xconnect()
Diffstat (limited to 'toys')
-rw-r--r--toys/net/ftpget.c3
-rw-r--r--toys/other/nbd_client.c2
-rw-r--r--toys/pending/telnet.c3
3 files changed, 5 insertions, 3 deletions
diff --git a/toys/net/ftpget.c b/toys/net/ftpget.c
index 94e5caed..3c63905e 100644
--- a/toys/net/ftpget.c
+++ b/toys/net/ftpget.c
@@ -107,7 +107,8 @@ void ftpget_main(void)
if (!remote) remote = toys.optargs[1];
// connect
- TT.fd = xconnect(*toys.optargs, TT.port, 0, SOCK_STREAM, 0, AI_ADDRCONFIG);
+ TT.fd = xconnect(xgetaddrifo(*toys.optargs, TT.port, 0, SOCK_STREAM, 0,
+ AI_ADDRCONFIG));
if (getpeername(TT.fd, (void *)&si6, &sl)) perror_exit("getpeername");
// Login
diff --git a/toys/other/nbd_client.c b/toys/other/nbd_client.c
index 3ad366f3..fcd0fca8 100644
--- a/toys/other/nbd_client.c
+++ b/toys/other/nbd_client.c
@@ -52,7 +52,7 @@ void nbd_client_main(void)
// Find and connect to server
- sock = xconnect(host, port, AF_UNSPEC, SOCK_STREAM, 0, 0);
+ sock = xconnect(xgetaddrinfo(host, port, AF_UNSPEC, SOCK_STREAM, 0, 0));
temp = 1;
setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, &temp, sizeof(int));
diff --git a/toys/pending/telnet.c b/toys/pending/telnet.c
index dc3487a5..e37b982c 100644
--- a/toys/pending/telnet.c
+++ b/toys/pending/telnet.c
@@ -306,7 +306,8 @@ void telnet_main(void)
}
terminal_size(&TT.win_width, &TT.win_height);
- TT.sfd = xconnect(*toys.optargs, port, 0, SOCK_STREAM, IPPROTO_TCP, 0);
+ TT.sfd = xconnect(xgetaddrinfo(*toys.optargs, port, 0, SOCK_STREAM,
+ IPPROTO_TCP, 0));
setsockopt(TT.sfd, SOL_SOCKET, SO_REUSEADDR, &set, sizeof(set));
setsockopt(TT.sfd, SOL_SOCKET, SO_KEEPALIVE, &set, sizeof(set));