Skip to content

Commit 0867f03

Browse files
committed
add GRE protocol
1 parent b86b840 commit 0867f03

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

flowapp/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.2.0b1"
1+
__version__ = "1.2.0b2"
22
__title__ = "ExaFS"
33
__description__ = "Tool for creation, validation, and execution of ExaBGP messages."
44
__author__ = "CESNET / Jiri Vrany, Petr Adamec, Josef Verich, Jakub Man"

flowapp/constants.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
MAX_PORT = 65535
3636
MAX_PACKET = 9216
3737

38-
IPV6_NEXT_HEADER = {"tcp": "tcp", "udp": "udp", "icmp": "58", "all": ""}
38+
IPV6_NEXT_HEADER = {"tcp": "tcp", "udp": "udp", "icmp": "58", "gre": "gre", "all": ""}
3939

40-
IPV4_PROTOCOL = {"tcp": "tcp", "udp": "udp", "icmp": "icmp", "all": ""}
40+
IPV4_PROTOCOL = {"tcp": "tcp", "udp": "udp", "icmp": "icmp", "gre": "gre", "all": ""}
4141

4242
IPV4_FRAGMENT = {
4343
"dont": "dont-fragment",

0 commit comments

Comments
 (0)