diff options
author | Denys Vlasenko | 2021-10-12 13:23:29 +0200 |
---|---|---|
committer | Denys Vlasenko | 2021-10-12 13:23:29 +0200 |
commit | 94c78aa0b91f2150bd038866addf3d0ee69474a8 (patch) | |
tree | c114f2e6a36cf0806a24aaa620157f5a480e5d4f /networking | |
parent | 7c3e96d4b3d419d76f97e17d42a4401ee685b7ec (diff) | |
download | busybox-94c78aa0b91f2150bd038866addf3d0ee69474a8.zip busybox-94c78aa0b91f2150bd038866addf3d0ee69474a8.tar.gz |
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 04d644b..0942645 100644 --- a/networking/Config.src +++ b/networking/Config.src @@ -46,6 +46,32 @@ config VERBOSE_RESOLUTION_ERRORS "can't resolve 'hostname.com'" and want to know more. This may increase size of your executable a bit. +config FEATURE_ETC_NETWORKS + bool "Support /etc/networks" + default n + help + Enable support for network names in /etc/networks. This is + a rarely used feature which allows you to use names + instead of IP/mask pairs in route command. + +config FEATURE_ETC_SERVICES + bool "Consult /etc/services even for well-known ports" + default n + help + Look up e.g. "telnet" and "http" in /etc/services file + instead of assuming ports 23 and 80. + This is almost never necessary (everybody uses standard ports), + and it makes sense to avoid reading this file. + If you disable this option, in the cases where port is explicitly + specified as a service name (e.g. "telnet HOST PORTNAME"), + it will still be looked up in /etc/services. + +config FEATURE_HWIB + bool "Support infiniband HW" + default y + help + Support for printing infiniband addresses in network applets. + config FEATURE_TLS_SHA1 bool "In TLS code, support ciphers which use deprecated SHA1" depends on TLS |