diff --git a/ip/tunnel.c b/ip/tunnel.c index f163dad6..33c78e3f 100644 --- a/ip/tunnel.c +++ b/ip/tunnel.c @@ -51,6 +51,9 @@ const char *tnl_strproto(__u8 proto) case IPPROTO_IPV6: strcpy(buf, "ipv6"); break; + case IPPROTO_ESP: + strcpy(buf, "esp"); + break; case 0: strcpy(buf, "any"); break;