diff options
author | Pere Orga <gotrunks@gmail.com> | 2011-04-11 03:29:49 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-04-11 03:29:49 +0200 |
commit | 5bc8c005a8e15c43285bc595a8d404de67a482ac (patch) | |
tree | 98f2d35d1db26f4d8cba5f095ff63bf8e2e8d980 /networking/telnetd.c | |
parent | 73ef15cf3894716c1393ed21dee6e6bb2cdbc90f (diff) | |
download | busybox-w32-5bc8c005a8e15c43285bc595a8d404de67a482ac.tar.gz busybox-w32-5bc8c005a8e15c43285bc595a8d404de67a482ac.tar.bz2 busybox-w32-5bc8c005a8e15c43285bc595a8d404de67a482ac.zip |
move remaining help text from include/usage.src.h
Signed-off-by: Pere Orga <gotrunks@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/telnetd.c')
-rw-r--r-- | networking/telnetd.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/networking/telnetd.c b/networking/telnetd.c index eec4417ca..4404064fc 100644 --- a/networking/telnetd.c +++ b/networking/telnetd.c | |||
@@ -20,6 +20,28 @@ | |||
20 | * Vladimir Oleynik <dzo@simtreas.ru> 2001 | 20 | * Vladimir Oleynik <dzo@simtreas.ru> 2001 |
21 | * Set process group corrections, initial busybox port | 21 | * Set process group corrections, initial busybox port |
22 | */ | 22 | */ |
23 | |||
24 | //usage:#define telnetd_trivial_usage | ||
25 | //usage: "[OPTIONS]" | ||
26 | //usage:#define telnetd_full_usage "\n\n" | ||
27 | //usage: "Handle incoming telnet connections" | ||
28 | //usage: IF_NOT_FEATURE_TELNETD_STANDALONE(" via inetd") "\n" | ||
29 | //usage: "\nOptions:" | ||
30 | //usage: "\n -l LOGIN Exec LOGIN on connect" | ||
31 | //usage: "\n -f ISSUE_FILE Display ISSUE_FILE instead of /etc/issue" | ||
32 | //usage: "\n -K Close connection as soon as login exits" | ||
33 | //usage: "\n (normally wait until all programs close slave pty)" | ||
34 | //usage: IF_FEATURE_TELNETD_STANDALONE( | ||
35 | //usage: "\n -p PORT Port to listen on" | ||
36 | //usage: "\n -b ADDR[:PORT] Address to bind to" | ||
37 | //usage: "\n -F Run in foreground" | ||
38 | //usage: "\n -i Inetd mode" | ||
39 | //usage: IF_FEATURE_TELNETD_INETD_WAIT( | ||
40 | //usage: "\n -w SEC Inetd 'wait' mode, linger time SEC" | ||
41 | //usage: "\n -S Log to syslog (implied by -i or without -F and -w)" | ||
42 | //usage: ) | ||
43 | //usage: ) | ||
44 | |||
23 | #define DEBUG 0 | 45 | #define DEBUG 0 |
24 | 46 | ||
25 | #include "libbb.h" | 47 | #include "libbb.h" |