diff options
author | Aaron Jones <aaronmdjones@gmail.com> | 2019-08-11 06:13:15 +0000 |
---|---|---|
committer | Aaron Jones <aaronmdjones@gmail.com> | 2019-08-11 06:13:15 +0000 |
commit | f7cb913d10415b3e55101bea871def14cd0d33bd (patch) | |
tree | ab0f50ba6bd7651ee695d7c2e83d1ae59a11dec5 /applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js | |
parent | 17f3e03930a79aecbb6ebcf851e47473d099ad32 (diff) |
luci-app-firewall: rules: sort ICMP types alphabetically
This just makes it easier to find the type one would want.
No types were added or removed, only re-arranged.
Signed-off-by: Aaron Jones <aaronmdjones@gmail.com>
Diffstat (limited to 'applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js')
-rw-r--r-- | applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js index e0c858fc4..a7924b107 100644 --- a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js +++ b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js @@ -221,44 +221,44 @@ return L.view.extend({ o.cast = 'table'; o.placeholder = _('any'); o.value('', 'any'); - o.value('echo-reply'); + o.value('address-mask-reply'); + o.value('address-mask-request'); + o.value('communication-prohibited'); o.value('destination-unreachable'); - o.value('network-unreachable'); - o.value('host-unreachable'); - o.value('protocol-unreachable'); - o.value('port-unreachable'); + o.value('echo-reply'); + o.value('echo-request'); o.value('fragmentation-needed'); - o.value('source-route-failed'); - o.value('network-unknown'); + o.value('host-precedence-violation'); + o.value('host-prohibited'); + o.value('host-redirect'); o.value('host-unknown'); + o.value('host-unreachable'); + o.value('ip-header-bad'); + o.value('neighbour-advertisement'); + o.value('neighbour-solicitation'); o.value('network-prohibited'); - o.value('host-prohibited'); - o.value('TOS-network-unreachable'); - o.value('TOS-host-unreachable'); - o.value('communication-prohibited'); - o.value('host-precedence-violation'); + o.value('network-redirect'); + o.value('network-unknown'); + o.value('network-unreachable'); + o.value('parameter-problem'); + o.value('port-unreachable'); o.value('precedence-cutoff'); - o.value('source-quench'); + o.value('protocol-unreachable'); o.value('redirect'); - o.value('network-redirect'); - o.value('host-redirect'); - o.value('TOS-network-redirect'); - o.value('TOS-host-redirect'); - o.value('echo-request'); + o.value('required-option-missing'); o.value('router-advertisement'); o.value('router-solicitation'); - o.value('neighbour-advertisement'); - o.value('neighbour-solicitation'); + o.value('source-quench'); + o.value('source-route-failed'); o.value('time-exceeded'); - o.value('ttl-zero-during-transit'); - o.value('ttl-zero-during-reassembly'); - o.value('parameter-problem'); - o.value('ip-header-bad'); - o.value('required-option-missing'); - o.value('timestamp-request'); o.value('timestamp-reply'); - o.value('address-mask-request'); - o.value('address-mask-reply'); + o.value('timestamp-request'); + o.value('TOS-host-redirect'); + o.value('TOS-host-unreachable'); + o.value('TOS-network-redirect'); + o.value('TOS-network-unreachable'); + o.value('ttl-zero-during-reassembly'); + o.value('ttl-zero-during-transit'); o.depends('proto', 'icmp'); o = s.taboption('general', widgets.ZoneSelect, 'src', _('Source zone')); |