From c38429b885f879c58c5e0e8acf3f7c5a689dc34c Mon Sep 17 00:00:00 2001 From: Charles Kenney Date: Sat, 11 Apr 2020 16:21:03 -0400 Subject: [PATCH] fix ICMP protocol value --- firewall_rules.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firewall_rules.go b/firewall_rules.go index 7dfc952ce..0939d0209 100644 --- a/firewall_rules.go +++ b/firewall_rules.go @@ -7,7 +7,7 @@ type NetworkProtocol string const ( TCP NetworkProtocol = "TCP" UDP NetworkProtocol = "UDP" - ICMP NetworkProtocol = "ALL" + ICMP NetworkProtocol = "ICMP" ) // NetworkAddresses are arrays of ipv4 and v6 addresses