luci-app-xinetd: ipv6 support for host fields
authorFritz D. Ansel <fdansel@yandex.ru>
Mon, 2 Aug 2021 18:35:38 +0000 (20:35 +0200)
committerFlorian Eckert <fe@dev.tdt.de>
Tue, 17 Aug 2021 08:28:05 +0000 (10:28 +0200)
Change datatype to allow ipv4 and ipv6.

Signed-off-by: Fritz D. Ansel <fdansel@yandex.ru>
Change commit message
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js

index 58364e136d9ff48963532c66c72d142227cb6e75..7550f2699faf5a15a3987edb2d710bd4e15aa819 100644 (file)
@@ -96,7 +96,7 @@ return view.extend({
                };
 
                o = s.taboption('basic', form.DynamicList, 'only_from', _('Allowed hosts'), _('List of allowed hosts to access this service'));
-               o.datatype = 'host';
+               o.datatype = 'or(ipaddr,ip6addr)';
                o.cast = 'string';
                o.modalonly = true;
 
@@ -154,7 +154,7 @@ return view.extend({
 
                // Advanced settings
                o = s.taboption('advanced', form.DynamicList, 'no_access', _('Forbidden hosts'), _('List of forbidden hosts to access this service'));
-               o.datatype = 'host';
+               o.datatype = 'or(ipaddr,ip6addr)';
                o.cast = 'string';
                o.modalonly = true;