diff options
-rw-r--r-- | src/include/ndpi_typedefs.h | 1 | ||||
-rw-r--r-- | src/lib/ndpi_utils.c | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/include/ndpi_typedefs.h b/src/include/ndpi_typedefs.h index 7434758bf..5fc4ca06e 100644 --- a/src/include/ndpi_typedefs.h +++ b/src/include/ndpi_typedefs.h @@ -56,6 +56,7 @@ typedef enum { ndpi_capwap_tunnel, ndpi_tzsp_tunnel, ndpi_l2tp_tunnel, + ndpi_vxlan_tunnel, } ndpi_packet_tunnel; /* diff --git a/src/lib/ndpi_utils.c b/src/lib/ndpi_utils.c index 9ff1af500..262cb2d72 100644 --- a/src/lib/ndpi_utils.c +++ b/src/lib/ndpi_utils.c @@ -1433,6 +1433,10 @@ const char* ndpi_tunnel2str(ndpi_packet_tunnel tt) { case ndpi_l2tp_tunnel: return("L2TP"); break; + + case ndpi_vxlan_tunnel: + return("VXLAN"); + break; } return(""); |