tunnel: decode ESP tunnel type

Add ESP to decode switch.
This commit is contained in:
Stephen Hemminger 2014-12-03 19:08:41 -08:00
parent 9de4c6e9e9
commit 14e9767330
1 changed files with 3 additions and 0 deletions

View File

@ -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;