diff options
author | Paul Donald <newtwen+github@gmail.com> | 2024-07-16 16:08:34 +0200 |
---|---|---|
committer | Paul Donald <newtwen+github@gmail.com> | 2024-07-18 00:42:52 +0200 |
commit | 46e8c0b8f7f460901a34d6300abb0b31271c3029 (patch) | |
tree | 24860eae33111515312f84aa5f08cae886c91065 /modules/luci-mod-network | |
parent | 3bf3c0a0480658a2d519a13a0d2df13e7a38d544 (diff) |
luci-mod-network: Present GCMP (AES) options in wifi
And include ccmp-256 bit
Signed-off-by: Paul Donald <newtwen+github@gmail.com>
Diffstat (limited to 'modules/luci-mod-network')
-rw-r--r-- | modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js | 3 |
1 files changed, 3 insertions, 0 deletions
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; |