luci-mod-network: Present GCMP (AES) options in wifi
authorPaul Donald <newtwen+github@gmail.com>
Tue, 16 Jul 2024 14:08:34 +0000 (16:08 +0200)
committerPaul Donald <newtwen+github@gmail.com>
Wed, 17 Jul 2024 22:42:52 +0000 (00:42 +0200)
And include ccmp-256 bit

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js

index 3433a8fea715ef8424c1d6b268e96b8db314919d..fcc47570ef530c3e9d587cda5bfa094898656cfe 100644 (file)
@@ -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;