aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-04-30 03:49:37 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-04-30 03:49:37 +0000
commitc9ccc500033571e88f4c98f27d55dc80992cb130 (patch)
tree6a0fb577de9944fcbb68604a45bbb581da6d8590 /include
parent307d534f9a2aca2d9785909e1f0561601edf8e13 (diff)
downloadbusybox-w32-c9ccc500033571e88f4c98f27d55dc80992cb130.tar.gz
busybox-w32-c9ccc500033571e88f4c98f27d55dc80992cb130.tar.bz2
busybox-w32-c9ccc500033571e88f4c98f27d55dc80992cb130.zip
David Brownell submitted a new applet, zcip, based on RFC 3927. This is
version 0418b. It compiled. git-svn-id: svn://busybox.net/trunk/busybox@10206 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include')
-rw-r--r--include/applets.h3
-rw-r--r--include/usage.h10
2 files changed, 13 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h
index 755eb01ab..7f6f75864 100644
--- a/include/applets.h
+++ b/include/applets.h
@@ -692,6 +692,9 @@
692#ifdef CONFIG_GUNZIP 692#ifdef CONFIG_GUNZIP
693 APPLET(zcat, gunzip_main, _BB_DIR_BIN, _BB_SUID_NEVER) 693 APPLET(zcat, gunzip_main, _BB_DIR_BIN, _BB_SUID_NEVER)
694#endif 694#endif
695#ifdef CONFIG_ZCIP
696 APPLET(zcip, zcip_main, _BB_DIR_SBIN, _BB_SUID_NEVER)
697#endif
695 698
696#if !defined(PROTOTYPES) && !defined(MAKE_USAGE) 699#if !defined(PROTOTYPES) && !defined(MAKE_USAGE)
697 { 0,NULL,0 } 700 { 0,NULL,0 }
diff --git a/include/usage.h b/include/usage.h
index 04d6ff409..b57644bc1 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -3038,4 +3038,14 @@
3038#define zcat_full_usage \ 3038#define zcat_full_usage \
3039 "Uncompress to stdout." 3039 "Uncompress to stdout."
3040 3040
3041#define zcip_trivial_usage \
3042 "[OPTIONS] ifname script"
3043#define zcip_full_usage \
3044 "zcip manages a ZeroConf IPv4 link-local address.\n" \
3045 "Options:\n" \
3046 "\t-f foreground mode\n" \
3047 "\t-q quit after address (no daemon)\n" \
3048 "\t-r 169.254.x.x request this address first\n" \
3049 "\t-v verbose; show version\n"
3050
3041#endif /* __BB_USAGE_H__ */ 3051#endif /* __BB_USAGE_H__ */