VPP-89: Fix an issue in format_vxlan_gpe_tunnel
Change-Id: Ie81e2eb918e441ddaa9e7ab57e8bb0129f0f4f8f Signed-off-by: Hongjun Ni <hongjun.ni@intel.com>
This commit is contained in:
@ -30,12 +30,16 @@ u8 * format_vxlan_gpe_tunnel (u8 * s, va_list * args)
|
|||||||
{
|
{
|
||||||
case VXLAN_GPE_PROTOCOL_IP4:
|
case VXLAN_GPE_PROTOCOL_IP4:
|
||||||
s = format (s, "next-protocol ip4");
|
s = format (s, "next-protocol ip4");
|
||||||
|
break;
|
||||||
case VXLAN_GPE_PROTOCOL_IP6:
|
case VXLAN_GPE_PROTOCOL_IP6:
|
||||||
s = format (s, "next-protocol ip6");
|
s = format (s, "next-protocol ip6");
|
||||||
|
break;
|
||||||
case VXLAN_GPE_PROTOCOL_ETHERNET:
|
case VXLAN_GPE_PROTOCOL_ETHERNET:
|
||||||
s = format (s, "next-protocol ethernet");
|
s = format (s, "next-protocol ethernet");
|
||||||
|
break;
|
||||||
case VXLAN_GPE_PROTOCOL_NSH:
|
case VXLAN_GPE_PROTOCOL_NSH:
|
||||||
s = format (s, "next-protocol nsh");
|
s = format (s, "next-protocol nsh");
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
s = format (s, "next-protocol unknown %d", t->protocol);
|
s = format (s, "next-protocol unknown %d", t->protocol);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user