diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-07-25 16:35:44 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-07-25 16:35:44 +0200 |
commit | 4abcb8b0d1c41544902ccd7927148eea393be37e (patch) | |
tree | 77cd2618e515cea20924bb90b001940578136772 | |
parent | 2ef4214dd9fef2b4251f9f2cb77d6aaa142db556 (diff) | |
download | busybox-w32-4abcb8b0d1c41544902ccd7927148eea393be37e.tar.gz busybox-w32-4abcb8b0d1c41544902ccd7927148eea393be37e.tar.bz2 busybox-w32-4abcb8b0d1c41544902ccd7927148eea393be37e.zip |
tcpudp: simplify help text
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/tcpudp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/tcpudp.c b/networking/tcpudp.c index a2b8c958c..3df6a98d8 100644 --- a/networking/tcpudp.c +++ b/networking/tcpudp.c | |||
@@ -36,14 +36,14 @@ | |||
36 | //usage:#define tcpsvd_full_usage "\n\n" | 36 | //usage:#define tcpsvd_full_usage "\n\n" |
37 | //usage: "Create TCP socket, bind to IP:PORT and listen\n" | 37 | //usage: "Create TCP socket, bind to IP:PORT and listen\n" |
38 | //usage: "for incoming connection. Run PROG for each connection.\n" | 38 | //usage: "for incoming connection. Run PROG for each connection.\n" |
39 | //usage: "\n IP IP to listen on. '0' = all" | 39 | //usage: "\n IP IP to listen on, 0 = all" |
40 | //usage: "\n PORT Port to listen on" | 40 | //usage: "\n PORT Port to listen on" |
41 | //usage: "\n PROG ARGS Program to run" | 41 | //usage: "\n PROG ARGS Program to run" |
42 | //usage: "\n -l NAME Local hostname (else looks up local hostname in DNS)" | 42 | //usage: "\n -l NAME Local hostname (else looks up local hostname in DNS)" |
43 | //usage: "\n -u USER[:GRP] Change to user/group after bind" | 43 | //usage: "\n -u USER[:GRP] Change to user/group after bind" |
44 | //usage: "\n -c N Handle up to N connections simultaneously" | 44 | //usage: "\n -c N Handle up to N connections simultaneously" |
45 | //usage: "\n -b N Allow a backlog of approximately N TCP SYNs" | 45 | //usage: "\n -b N Allow a backlog of approximately N TCP SYNs" |
46 | //usage: "\n -C N[:MSG] Allow only up to N connections from the same IP." | 46 | //usage: "\n -C N[:MSG] Allow only up to N connections from the same IP" |
47 | //usage: "\n New connections from this IP address are closed" | 47 | //usage: "\n New connections from this IP address are closed" |
48 | //usage: "\n immediately. MSG is written to the peer before close" | 48 | //usage: "\n immediately. MSG is written to the peer before close" |
49 | //usage: "\n -h Look up peer's hostname" | 49 | //usage: "\n -h Look up peer's hostname" |
@@ -56,7 +56,7 @@ | |||
56 | //usage: "Create UDP socket, bind to IP:PORT and wait\n" | 56 | //usage: "Create UDP socket, bind to IP:PORT and wait\n" |
57 | //usage: "for incoming packets. Run PROG for each packet,\n" | 57 | //usage: "for incoming packets. Run PROG for each packet,\n" |
58 | //usage: "redirecting all further packets with same peer ip:port to it.\n" | 58 | //usage: "redirecting all further packets with same peer ip:port to it.\n" |
59 | //usage: "\n IP IP to listen on. '0' = all" | 59 | //usage: "\n IP IP to listen on, 0 = all" |
60 | //usage: "\n PORT Port to listen on" | 60 | //usage: "\n PORT Port to listen on" |
61 | //usage: "\n PROG ARGS Program to run" | 61 | //usage: "\n PROG ARGS Program to run" |
62 | //usage: "\n -l NAME Local hostname (else looks up local hostname in DNS)" | 62 | //usage: "\n -l NAME Local hostname (else looks up local hostname in DNS)" |