From: Paul Donald Date: Tue, 16 Jul 2024 14:08:34 +0000 (+0200) Subject: luci-mod-network: Present GCMP (AES) options in wifi X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=46e8c0b8f7f460901a34d6300abb0b31271c3029;p=openwrt-luci.git luci-mod-network: Present GCMP (AES) options in wifi And include ccmp-256 bit Signed-off-by: Paul Donald --- diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js index 3433a8fea7..fcc47570ef 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js @@ -1238,6 +1238,9 @@ return view.extend({ o.depends('encryption', 'psk-mixed'); o.value('auto', _('auto')); o.value('ccmp', _('Force CCMP (AES)')); + o.value('ccmp256', _('Force CCMP-256 (AES)')); + o.value('gcmp', _('Force GCMP (AES)')); + o.value('gcmp256', _('Force GCMP-256 (AES)')); o.value('tkip', _('Force TKIP')); o.value('tkip+ccmp', _('Force TKIP and CCMP (AES)')); o.write = ss.children.filter(function(o) { return o.option == 'encryption' })[0].write;