aboutsummaryrefslogtreecommitdiff
path: root/ipsvd
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-04-01 19:10:36 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-04-01 19:10:36 +0000
commit60fadaca28f262c1cbd0b5e1553118f22f802d1b (patch)
treeb1f94d06f1747f36d8c880ec1160ae7abc151408 /ipsvd
parent57a426b15becb6b91850a55986244e53b8b22773 (diff)
downloadbusybox-60fadaca28f262c1cbd0b5e1553118f22f802d1b.tar.gz
udpsvd: next part of ipsvd applets (not working yet)
Diffstat (limited to 'ipsvd')
-rw-r--r--ipsvd/Config.in8
-rw-r--r--ipsvd/Kbuild1
-rw-r--r--ipsvd/tcpsvd.c11
3 files changed, 13 insertions, 7 deletions
diff --git a/ipsvd/Config.in b/ipsvd/Config.in
index fb2931d07..8522ef9eb 100644
--- a/ipsvd/Config.in
+++ b/ipsvd/Config.in
@@ -9,6 +9,12 @@ config TCPSVD
bool "tcpsvd"
default n
help
- tcpsvd listens on a port and runs a program for each new connection
+ tcpsvd listens on a tcp port and runs a program for each new connection
+
+config UDPSVD
+ bool "udpsvd"
+ default n
+ help
+ udpsvd listens on a udp port and runs a program for each new connection
endmenu
diff --git a/ipsvd/Kbuild b/ipsvd/Kbuild
index 8050921b0..9eda63d20 100644
--- a/ipsvd/Kbuild
+++ b/ipsvd/Kbuild
@@ -6,3 +6,4 @@
lib-y:=
lib-$(CONFIG_TCPSVD) += tcpsvd.o ipsvd_perhost.o
+lib-$(CONFIG_UDPSVD) += udpsvd.o
diff --git a/ipsvd/tcpsvd.c b/ipsvd/tcpsvd.c
index 2a3cd3b01..197edca4e 100644
--- a/ipsvd/tcpsvd.c
+++ b/ipsvd/tcpsvd.c
@@ -126,7 +126,6 @@ int tcpsvd_main(int argc, char **argv)
socklen_t sockadr_size;
uint16_t local_port = local_port;
uint16_t remote_port;
- unsigned port;
char *local_hostname = NULL;
char *remote_hostname = (char*)""; /* "" used if no -h */
char *local_ip = local_ip;
@@ -221,8 +220,8 @@ int tcpsvd_main(int argc, char **argv)
if (max_per_host)
ipsvd_perhost_init(cmax);
- port = bb_lookup_port(argv[1], "tcp", 0);
- sock = create_and_bind_stream_or_die(argv[0], port);
+ local_port = bb_lookup_port(argv[1], "tcp", 0);
+ sock = create_and_bind_stream_or_die(argv[0], local_port);
xlisten(sock, backlog);
/* ndelay_off(sock); - it is the default I think? */
@@ -238,7 +237,7 @@ int tcpsvd_main(int argc, char **argv)
if (verbose) {
/* we do it only for ":port" cosmetics... oh well */
- len_and_sockaddr *lsa = xhost2sockaddr(argv[0], port);
+ len_and_sockaddr *lsa = xhost2sockaddr(argv[0], local_port);
char *addr = xmalloc_sockaddr2dotted(&lsa->sa, lsa->len);
printf("%s: info: listening on %s", applet_name, addr);
@@ -246,7 +245,7 @@ int tcpsvd_main(int argc, char **argv)
#ifndef SSLSVD
if (option_mask32 & OPT_u)
printf(", uid %u, gid %u",
- (unsigned)ugid.uid, (unsigned)ugid.uid);
+ (unsigned)ugid.uid, (unsigned)ugid.gid);
#endif
puts(", starting");
}
@@ -356,7 +355,7 @@ int tcpsvd_main(int argc, char **argv)
sockadr_size = sizeof(sock_adr);
if (getsockopt(conn, SOL_IP, SO_ORIGINAL_DST, &sock_adr.sa, &sockadr_size) == 0) {
char *ip = xmalloc_sockaddr2dotted_noport(&sock_adr.sa, sockadr_size);
- port = get_nport(&sock_adr.sa);
+ unsigned port = get_nport(&sock_adr.sa);
port = ntohs(port);
xsetenv("TCPORIGDSTIP", ip);
xsetenv("TCPORIGDSTPORT", utoa(port));