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
This commit is contained in:
@@ -106,7 +106,7 @@ int nc_main(int argc, char **argv)
|
||||
if (!lport) {
|
||||
socklen_t addrlen = lsa->len;
|
||||
getsockname(sfd, &lsa->sa, &addrlen);
|
||||
lport = get_nport(lsa);
|
||||
lport = get_nport(&lsa->sa);
|
||||
fdprintf(2, "%d\n", ntohs(lport));
|
||||
}
|
||||
fcntl(sfd, F_SETFD, FD_CLOEXEC);
|
||||
|
@@ -287,7 +287,7 @@ static int tftp(
|
||||
bb_perror_msg("recvfrom");
|
||||
break;
|
||||
}
|
||||
from_port = get_nport(from);
|
||||
from_port = get_nport(&from->sa);
|
||||
if (port == org_port) {
|
||||
/* Our first query went to port 69
|
||||
* but reply will come from different one.
|
||||
|
Reference in New Issue
Block a user