diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-11-23 09:05:14 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-11-23 09:05:14 +0100 |
commit | 47367e1d50b81501e8a6ce215f8be4eeacdda693 (patch) | |
tree | 28be64a4a758a274ef2459628ec29384722cd3fb /networking/zcip.c | |
parent | e32b64c4ec9272295df6852fb2a2888d7799d2f0 (diff) | |
download | busybox-w32-47367e1d50b81501e8a6ce215f8be4eeacdda693.tar.gz busybox-w32-47367e1d50b81501e8a6ce215f8be4eeacdda693.tar.bz2 busybox-w32-47367e1d50b81501e8a6ce215f8be4eeacdda693.zip |
Convert all networking/* applets to "new style" applet definitions
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/zcip.c')
-rw-r--r-- | networking/zcip.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/networking/zcip.c b/networking/zcip.c index 47f3216a0..9122bd681 100644 --- a/networking/zcip.c +++ b/networking/zcip.c | |||
@@ -14,6 +14,22 @@ | |||
14 | * routed at the IP level, though various proxies or bridges can | 14 | * routed at the IP level, though various proxies or bridges can |
15 | * certainly be used. Its naming is built over multicast DNS. | 15 | * certainly be used. Its naming is built over multicast DNS. |
16 | */ | 16 | */ |
17 | //config:config ZCIP | ||
18 | //config: bool "zcip" | ||
19 | //config: default y | ||
20 | //config: select PLATFORM_LINUX | ||
21 | //config: select FEATURE_SYSLOG | ||
22 | //config: help | ||
23 | //config: ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927. | ||
24 | //config: It's a daemon that allocates and defends a dynamically assigned | ||
25 | //config: address on the 169.254/16 network, requiring no system administrator. | ||
26 | //config: | ||
27 | //config: See http://www.zeroconf.org for further details, and "zcip.script" | ||
28 | //config: in the busybox examples. | ||
29 | |||
30 | //applet:IF_ZCIP(APPLET(zcip, BB_DIR_SBIN, BB_SUID_DROP)) | ||
31 | |||
32 | //kbuild:lib-$(CONFIG_ZCIP) += zcip.o | ||
17 | 33 | ||
18 | //#define DEBUG | 34 | //#define DEBUG |
19 | 35 | ||