diff options
author | Maatuq <mahmoudmatook.mm@gmail.com> | 2023-04-04 16:20:11 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-04 14:20:11 +0200 |
commit | f1193d5e6f7680e6b8195eea33d740987619ac9c (patch) | |
tree | 23bc44c14eb5cb5c0c49799a9dae1e4541f7fa04 /src/lib/ndpi_utils.c | |
parent | cc5aec5f0ac6ff3d7d4c9ecbe02881641e8c8c92 (diff) |
add support for gre decapsulation (#1442) (#1921)
Diffstat (limited to 'src/lib/ndpi_utils.c')
-rw-r--r-- | src/lib/ndpi_utils.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/ndpi_utils.c b/src/lib/ndpi_utils.c index 5976de3d4..8f89ef7bf 100644 --- a/src/lib/ndpi_utils.c +++ b/src/lib/ndpi_utils.c @@ -1645,6 +1645,10 @@ const char* ndpi_tunnel2str(ndpi_packet_tunnel tt) { case ndpi_vxlan_tunnel: return("VXLAN"); break; + + case ndpi_gre_tunnel: + return("GRE"); + break; } return(""); |