diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-01 01:18:20 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-01 01:18:20 +0000 |
commit | 2856dab4770e521a87c18b04ae8ebc209a9b95f9 (patch) | |
tree | d4f6495339702c0b6d79816d0bb07ba4b6679ce8 /networking/nc.c | |
parent | f443bffd3c24c4b7fcbc0472c75e747e26c24fef (diff) | |
download | busybox-w32-2856dab4770e521a87c18b04ae8ebc209a9b95f9.tar.gz busybox-w32-2856dab4770e521a87c18b04ae8ebc209a9b95f9.tar.bz2 busybox-w32-2856dab4770e521a87c18b04ae8ebc209a9b95f9.zip |
tcpsvd: new applet
It's a GPL-ed 'clone' of Dan Bernstein's tcpserver.
Author: Gerrit Pape <pape@smarden.org>
http://smarden.sunsite.dk/ipsvd/
size tcpsvd.o
text data bss dec hex filename
2571 4 16 2591 a1f tcpsvd.o
Diffstat (limited to 'networking/nc.c')
-rw-r--r-- | networking/nc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/nc.c b/networking/nc.c index 1bdecaf5e..bc7c701fe 100644 --- a/networking/nc.c +++ b/networking/nc.c | |||
@@ -106,7 +106,7 @@ int nc_main(int argc, char **argv) | |||
106 | if (!lport) { | 106 | if (!lport) { |
107 | socklen_t addrlen = lsa->len; | 107 | socklen_t addrlen = lsa->len; |
108 | getsockname(sfd, &lsa->sa, &addrlen); | 108 | getsockname(sfd, &lsa->sa, &addrlen); |
109 | lport = get_nport(lsa); | 109 | lport = get_nport(&lsa->sa); |
110 | fdprintf(2, "%d\n", ntohs(lport)); | 110 | fdprintf(2, "%d\n", ntohs(lport)); |
111 | } | 111 | } |
112 | fcntl(sfd, F_SETFD, FD_CLOEXEC); | 112 | fcntl(sfd, F_SETFD, FD_CLOEXEC); |