Commit 14e97673 authored by Stephen Hemminger's avatar Stephen Hemminger

tunnel: decode ESP tunnel type

Add ESP to decode switch.
parent 9de4c6e9
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment