summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJonathan G. Underwood <jonathan.underwood@gmail.com>2023-05-16 20:34:55 +0100
committerJonathan G. Underwood <jonathan.underwood@gmail.com>2023-05-16 20:34:55 +0100
commit73abc0ee6d64bab49889b1d5fbca09f9a8e64745 (patch)
tree1eb221ae2067e436d14f93b8d9bb8501071fd750
parent451e63d9baca370568313a5d19322970e04a3541 (diff)
luci-app-firewall: add ICMPv6 MLD rules
This adds entries for ICMPv6 MLD types. This fixes the ICMPv6 MLD types to be consistent with fw4. These types were added to fw4 in this commit: - https://github.com/openwrt/firewall4/commit/e6e82a55206cf7017f26b92f7097f779161b5cac But were omitted from the corresponding luci-app-firewall commit: - https://github.com/openwrt/luci/commit/88a016cbff7eacf3a8248bc4949904abacef6685 Signed-off-by: Jonathan G. Underwood <jonathan.underwood@gmail.com>
-rw-r--r--applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js3
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 */