summaryrefslogtreecommitdiff
path: root/networking/nc.c
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2017-07-24 11:40:28 +0100
committerRon Yorston <rmy@pobox.com>2017-07-24 12:03:28 +0100
commit60411636073cdc08e8005f0de00098e6dd00eaf5 (patch)
tree58673b64af1e663280be81f798c8f66ce116d1dd /networking/nc.c
parenteeceafbc5c4caf513c6d92b7d71ecb0ccd89a3f8 (diff)
parentb72f1ef17b97802d33f0ac522f64bea0f65442c5 (diff)
downloadbusybox-w32-60411636073cdc08e8005f0de00098e6dd00eaf5.tar.gz
busybox-w32-60411636073cdc08e8005f0de00098e6dd00eaf5.tar.bz2
busybox-w32-60411636073cdc08e8005f0de00098e6dd00eaf5.zip
Merge branch 'busybox' into merge
Diffstat (limited to 'networking/nc.c')
-rw-r--r--networking/nc.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/networking/nc.c b/networking/nc.c
index 1b70434ac..df073d7df 100644
--- a/networking/nc.c
+++ b/networking/nc.c
@@ -7,37 +7,37 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config NC 9//config:config NC
10//config: bool "nc" 10//config: bool "nc (11 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: A simple Unix utility which reads and writes data across network 13//config: A simple Unix utility which reads and writes data across network
14//config: connections. 14//config: connections.
15//config: 15//config:
16//config:config NC_SERVER 16//config:config NC_SERVER
17//config: bool "Netcat server options (-l)" 17//config: bool "Netcat server options (-l)"
18//config: default y 18//config: default y
19//config: depends on NC 19//config: depends on NC
20//config: help 20//config: help
21//config: Allow netcat to act as a server. 21//config: Allow netcat to act as a server.
22//config: 22//config:
23//config:config NC_EXTRA 23//config:config NC_EXTRA
24//config: bool "Netcat extensions (-eiw and -f FILE)" 24//config: bool "Netcat extensions (-eiw and -f FILE)"
25//config: default y 25//config: default y
26//config: depends on NC 26//config: depends on NC
27//config: help 27//config: help
28//config: Add -e (support for executing the rest of the command line after 28//config: Add -e (support for executing the rest of the command line after
29//config: making or receiving a successful connection), -i (delay interval for 29//config: making or receiving a successful connection), -i (delay interval for
30//config: lines sent), -w (timeout for initial connection). 30//config: lines sent), -w (timeout for initial connection).
31//config: 31//config:
32//config:config NC_110_COMPAT 32//config:config NC_110_COMPAT
33//config: bool "Netcat 1.10 compatibility (+2.5k)" 33//config: bool "Netcat 1.10 compatibility (+2.5k)"
34//config: default n # off specially for Rob 34//config: default n # off specially for Rob
35//config: depends on NC 35//config: depends on NC
36//config: help 36//config: help
37//config: This option makes nc closely follow original nc-1.10. 37//config: This option makes nc closely follow original nc-1.10.
38//config: The code is about 2.5k bigger. It enables 38//config: The code is about 2.5k bigger. It enables
39//config: -s ADDR, -n, -u, -v, -o FILE, -z options, but loses 39//config: -s ADDR, -n, -u, -v, -o FILE, -z options, but loses
40//config: busybox-specific extensions: -f FILE. 40//config: busybox-specific extensions: -f FILE.
41 41
42//applet:IF_NC(APPLET(nc, BB_DIR_USR_BIN, BB_SUID_DROP)) 42//applet:IF_NC(APPLET(nc, BB_DIR_USR_BIN, BB_SUID_DROP))
43 43