diff options
author | David Bauer <mail@david-bauer.net> | 2020-06-01 08:20:44 +0200 |
---|---|---|
committer | David Bauer <mail@david-bauer.net> | 2020-06-01 08:20:44 +0200 |
commit | 57ad80a02d24941f79dc03459b129f3314525df4 (patch) | |
tree | 0c651709a184d70c2ad358404bece17b29a5ee0c /modules/luci-base/root/usr/libexec | |
parent | 4e202475e255865618465689eeae1a3b502a65c9 (diff) |
luci-base: add queryable WEP WiFi feature
This commit adds WEP as a queryable WiFi feature.
Support for the deprecated WEP encryption is not
compiled-in to hostapd or wpa_supplicant by default
anymore.
Allow LuCi to query the availability of WEP to remove
it from the list of avialable encryption methods in case
hostapd / wpa_supplicant are compiled without it.
Signed-off-by: David Bauer <mail@david-bauer.net>
Diffstat (limited to 'modules/luci-base/root/usr/libexec')
-rwxr-xr-x | modules/luci-base/root/usr/libexec/rpcd/luci | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-base/root/usr/libexec/rpcd/luci b/modules/luci-base/root/usr/libexec/rpcd/luci index 35b85d43d0..7f0c0b226c 100755 --- a/modules/luci-base/root/usr/libexec/rpcd/luci +++ b/modules/luci-base/root/usr/libexec/rpcd/luci @@ -219,7 +219,7 @@ local methods = { rv.cabundle = fs.access("/etc/ssl/certs/ca-certificates.crt") rv.relayd = fs.access("/usr/sbin/relayd") - local wifi_features = { "eap", "11n", "11ac", "11r", "11w", "acs", "sae", "owe", "suiteb192" } + local wifi_features = { "eap", "11n", "11ac", "11r", "11w", "acs", "sae", "owe", "suiteb192", "wep" } if fs.access("/usr/sbin/hostapd") then rv.hostapd = { cli = fs.access("/usr/sbin/hostapd_cli") } |