diff options
author | Keith Burns (alagalah) <alagalah@gmail.com> | 2016-05-16 07:47:14 -0700 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2016-05-16 16:52:57 +0000 |
commit | 72a7ded3762ef54867fc8b35ec8082c406c84005 (patch) | |
tree | cfae9799295ae09e07c480856f66817833d6f7b1 /vpp/api | |
parent | 793b18de058a9e8ae64023f14b19f5bcd30e9ead (diff) |
VPP-61 Patch1/2 - Remove NSH from VPP
- Had issues with original patch and CSIT, breaking into
-- Makefile and API changes
-- Follow up patch removing NSH directory
Change-Id: I6c2f49a74d59b97ce4ea43799cc6f01f5cb1d5a2
Signed-off-by: Keith Burns (alagalah) <alagalah@gmail.com>
Diffstat (limited to 'vpp/api')
-rw-r--r-- | vpp/api/custom_dump.c | 2 | ||||
-rw-r--r-- | vpp/api/vpe.api | 52 |
2 files changed, 0 insertions, 54 deletions
diff --git a/vpp/api/custom_dump.c b/vpp/api/custom_dump.c index ba41b1fb..47c9f662 100644 --- a/vpp/api/custom_dump.c +++ b/vpp/api/custom_dump.c @@ -26,8 +26,6 @@ #include <vnet/l2tp/l2tp.h> #include <vnet/l2/l2_input.h> #include <vnet/sr/sr_packet.h> -//#include <vnet/nsh-gre/nsh_gre.h> //alagalah testing nsh-gre removal -#include <vnet/nsh/nsh.h> //alagalah testing nsh-gre removal #include <vnet/vxlan-gpe/vxlan_gpe.h> #include <vlib/vlib.h> #include <vlib/unix/unix.h> diff --git a/vpp/api/vpe.api b/vpp/api/vpe.api index a61c2601..021cd0c0 100644 --- a/vpp/api/vpe.api +++ b/vpp/api/vpe.api @@ -2030,35 +2030,6 @@ manual_java define show_version_reply { u8 build_directory[256]; }; -define nsh_gre_add_del_tunnel { - u32 client_index; - u32 context; - u32 src; - u32 dst; - u32 encap_vrf_id; - u32 decap_vrf_id; - u32 decap_next_index; - u8 tlv_len_in_words; - u8 is_add; - u8 ver_o_c; - u8 length; - u8 md_type; - u8 next_protocol; - /* in network byte order */ - u32 spi_si; - u32 c1; - u32 c2; - u32 c3; - u32 c4; - u32 tlvs[0]; -}; - -define nsh_gre_add_del_tunnel_reply { - u32 context; - i32 retval; - u32 sw_if_index; -}; - /** \brief Vhost-user interface details structure (fix this) @param sw_if_index - index of the interface @param interface_name - name of interface @@ -2157,29 +2128,6 @@ define vxlan_gpe_add_del_tunnel_reply { u32 sw_if_index; }; -define nsh_add_del_entry { - u32 client_index; - u32 context; - u8 tlv_len_in_words; - u8 is_add; - u8 ver_o_c; - u8 length; - u8 md_type; - u8 next_protocol; - /* in network byte order */ - u32 nsp_nsi; - u32 c1; - u32 c2; - u32 c3; - u32 c4; - u32 tlvs[0]; -}; - -define nsh_add_del_entry_reply { - u32 context; - i32 retval; - u32 sw_if_index; -}; /** \brief add or delete locator_set @param client_index - opaque cookie to identify the sender |