From 14053c9dbd75182f5302f7388d17508f3930f7ce Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Sun, 29 Dec 2019 23:55:18 +0000 Subject: ipip: Multi-point interface Type: feature plus fixes for gre Signed-off-by: Neale Ranns Change-Id: I0eca5f94b8b8ea0fcfb058162cafea4491708db6 --- src/vnet/tunnel/tunnel.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/vnet/tunnel/tunnel.h') diff --git a/src/vnet/tunnel/tunnel.h b/src/vnet/tunnel/tunnel.h index e3390f5a165..f23a3d41924 100644 --- a/src/vnet/tunnel/tunnel.h +++ b/src/vnet/tunnel/tunnel.h @@ -20,7 +20,7 @@ #include -#define foreach_tunnel_mode \ +#define foreach_tunnel_mode \ _(P2P, "point-to-point") \ _(MP, "multi-point") \ @@ -32,11 +32,12 @@ typedef enum tunnel_mode_t_ } __clib_packed tunnel_mode_t; extern u8 *format_tunnel_mode (u8 * s, va_list * args); +extern uword unformat_tunnel_mode (unformat_input_t * input, va_list * args); /** * Keep these idenitical to those in ipip.api */ -#define forech_tunnel_encap_decap_flag \ +#define forech_tunnel_encap_decap_flag \ _(NONE, "none", 0x0) \ _(ENCAP_COPY_DF, "encap-copy-df", 0x1) \ _(ENCAP_SET_DF, "encap-set-df", 0x2) \ -- cgit 1.2.3-korg