diff options
author | Rob Landley <rob@landley.net> | 2006-07-10 19:45:20 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-07-10 19:45:20 +0000 |
commit | 1cca9484db69971f652dfef48778da0dc56dad12 (patch) | |
tree | 71cb84ae857702f57bdced4a1e99b877499bfd4a /networking/Config.in | |
parent | 5d8843e451c01d8abfe6b5be772637310e9e581e (diff) | |
download | busybox-w32-1cca9484db69971f652dfef48778da0dc56dad12.tar.gz busybox-w32-1cca9484db69971f652dfef48778da0dc56dad12.tar.bz2 busybox-w32-1cca9484db69971f652dfef48778da0dc56dad12.zip |
Upgrade netcat a lot. Make -e able to take the rest of the command line as
what to exec. Add -f mode and a brief explanation of how to use it to replace
minicom. Add -l -l mode so you can turn any command into a server. And group
all of netcat's command line options under two CONFIG entries, so if you
disable both it doesn't use getopt at all.
Diffstat (limited to 'networking/Config.in')
-rw-r--r-- | networking/Config.in | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/networking/Config.in b/networking/Config.in index e95ae0d74..e5eb11caa 100644 --- a/networking/Config.in +++ b/networking/Config.in | |||
@@ -446,13 +446,21 @@ config CONFIG_NC | |||
446 | A simple Unix utility which reads and writes data across network | 446 | A simple Unix utility which reads and writes data across network |
447 | connections. | 447 | connections. |
448 | 448 | ||
449 | config CONFIG_NC_GAPING_SECURITY_HOLE | 449 | config CONFIG_NC_SERVER |
450 | bool "gaping security hole" | 450 | bool "Netcat server options (-lp)" |
451 | default n | 451 | default n |
452 | depends on CONFIG_NC | 452 | depends on CONFIG_NC |
453 | help | 453 | help |
454 | Add support for executing a program after making or receiving a | 454 | Allow netcat to act as a server. |
455 | successful connection (-e option). | 455 | |
456 | config CONFIG_NC_EXTRA | ||
457 | bool "Netcat extensions (-eiw and filename)" | ||
458 | default n | ||
459 | depends on CONFIG_NC | ||
460 | help | ||
461 | Add -e (support for executing the rest of the command line after | ||
462 | making or receiving a successful connection), -i (delay interval for | ||
463 | lines sent), -w (timeout for initial connection). | ||
456 | 464 | ||
457 | config CONFIG_NETSTAT | 465 | config CONFIG_NETSTAT |
458 | bool "netstat" | 466 | bool "netstat" |