diff options
author | Daniel Golle <daniel@makrotopia.org> | 2020-09-08 17:33:29 +0100 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2020-09-08 19:44:00 +0100 |
commit | d7b614a86b815da711b5fecb10687297a70d859e (patch) | |
tree | 04fb3fdda695aa1f4a807a3ad7a2540df44d589a | |
parent | 645ceed0ed706b073edd6a0d5a2eb936208b48c9 (diff) |
netifd-wireless: parse 'osen' encryption
Support Hotspot 2.0 online signup with encryption, either as only
encryption type of a dedicated SSID or together with WPA-EAP for
single SSID setups.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
-rw-r--r-- | scripts/netifd-wireless.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/netifd-wireless.sh b/scripts/netifd-wireless.sh index d51380d..72f36d6 100644 --- a/scripts/netifd-wireless.sh +++ b/scripts/netifd-wireless.sh @@ -275,6 +275,12 @@ wireless_vif_parse_encryption() { esac ;; esac + + case "$encryption" in + *osen*) + auth_osen=1 + ;; + esac } _wireless_set_brsnoop_isolation() { |