diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2021-10-12 13:23:29 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-10-12 13:23:29 +0200 |
commit | 94c78aa0b91f2150bd038866addf3d0ee69474a8 (patch) | |
tree | c114f2e6a36cf0806a24aaa620157f5a480e5d4f /networking | |
parent | 7c3e96d4b3d419d76f97e17d42a4401ee685b7ec (diff) | |
download | busybox-w32-94c78aa0b91f2150bd038866addf3d0ee69474a8.tar.gz busybox-w32-94c78aa0b91f2150bd038866addf3d0ee69474a8.tar.bz2 busybox-w32-94c78aa0b91f2150bd038866addf3d0ee69474a8.zip |
config system: move some options closer to relevalnt tool subdirectories
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r-- | networking/Config.src | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/networking/Config.src b/networking/Config.src index 04d644bc9..0942645c3 100644 --- a/networking/Config.src +++ b/networking/Config.src | |||
@@ -46,6 +46,32 @@ config VERBOSE_RESOLUTION_ERRORS | |||
46 | "can't resolve 'hostname.com'" and want to know more. | 46 | "can't resolve 'hostname.com'" and want to know more. |
47 | This may increase size of your executable a bit. | 47 | This may increase size of your executable a bit. |
48 | 48 | ||
49 | config FEATURE_ETC_NETWORKS | ||
50 | bool "Support /etc/networks" | ||
51 | default n | ||
52 | help | ||
53 | Enable support for network names in /etc/networks. This is | ||
54 | a rarely used feature which allows you to use names | ||
55 | instead of IP/mask pairs in route command. | ||
56 | |||
57 | config FEATURE_ETC_SERVICES | ||
58 | bool "Consult /etc/services even for well-known ports" | ||
59 | default n | ||
60 | help | ||
61 | Look up e.g. "telnet" and "http" in /etc/services file | ||
62 | instead of assuming ports 23 and 80. | ||
63 | This is almost never necessary (everybody uses standard ports), | ||
64 | and it makes sense to avoid reading this file. | ||
65 | If you disable this option, in the cases where port is explicitly | ||
66 | specified as a service name (e.g. "telnet HOST PORTNAME"), | ||
67 | it will still be looked up in /etc/services. | ||
68 | |||
69 | config FEATURE_HWIB | ||
70 | bool "Support infiniband HW" | ||
71 | default y | ||
72 | help | ||
73 | Support for printing infiniband addresses in network applets. | ||
74 | |||
49 | config FEATURE_TLS_SHA1 | 75 | config FEATURE_TLS_SHA1 |
50 | bool "In TLS code, support ciphers which use deprecated SHA1" | 76 | bool "In TLS code, support ciphers which use deprecated SHA1" |
51 | depends on TLS | 77 | depends on TLS |