diff options
author | Jo-Philipp Wich <jo@mein.io> | 2023-06-14 22:25:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-14 22:25:40 +0200 |
commit | a8d4d26bfceccf9a8f98461e47cbac73d88e1bf3 (patch) | |
tree | 3eafbe2a039a0c3a18ff7d74771b7ca8a140f9f3 /applications/luci-app-firewall | |
parent | dac9ec0cd18eadd0a00ed07f10b3d6c1a04167d3 (diff) | |
parent | 73abc0ee6d64bab49889b1d5fbca09f9a8e64745 (diff) |
Merge pull request #6390 from jonathanunderwood/patch-1
luci-app-firewall: add missing ICMPv6 MLD types
Diffstat (limited to 'applications/luci-app-firewall')
-rw-r--r-- | applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js | 3 |
1 files changed, 3 insertions, 0 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 018554e991..c8809d0d7f 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 @@ -325,6 +325,9 @@ return view.extend({ o.value('mobile-prefix-advertisement'); /* icmpv6 147 */ o.value('mobile-prefix-solicitation'); /* icmpv6 146 */ o.value('mpl-control-message'); /* icmpv6 159 */ + o.value('multicast-listener-query'); /* icmpv6 130 */ + o.value('multicast-listener-report'); /* icmpv6 131 */ + o.value('multicast-listener-done'); /* icmpv6 132 */ o.value('multicast-router-advertisement'); /* icmpv6 151 */ o.value('multicast-router-solicitation'); /* icmpv6 152 */ o.value('multicast-router-termination'); /* icmpv6 153 */ |