Skip to content

Commit 4a3c61e

Browse files
authored
Add support for Firewall protocols ESP and GRE (#129)
Signed-off-by: Lukas Kämmerling <lukas.kaemmerling@hetzner-cloud.de>
1 parent 1500fbc commit 4a3c61e

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

hcloud/firewalls/domain.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,10 @@ class FirewallRule:
8080
"""Firewall Rule Protocol ICMP"""
8181
PROTOCOL_TCP = "tcp"
8282
"""Firewall Rule Protocol TCP"""
83+
PROTOCOL_ESP = "esp"
84+
"""Firewall Rule Protocol ESP"""
85+
PROTOCOL_GRE = "gre"
86+
"""Firewall Rule Protocol GRE"""
8387

8488
def __init__(
8589
self,

0 commit comments

Comments
 (0)