summaryrefslogtreecommitdiffstats
path: root/src/vnet/nhrp/nhrp_api.c
diff options
context:
space:
mode:
authorNeale Ranns <nranns@cisco.com>2020-02-03 10:55:09 +0000
committerDamjan Marion <dmarion@me.com>2020-02-04 09:44:58 +0000
commit03ce46219cd0fabfd4918822c5b9fed9ef880de8 (patch)
treef33c291dba25bcbe856602e6c63ce9d8ef4cc96c /src/vnet/nhrp/nhrp_api.c
parent0860b2e19365c092f10dd1ce639caaded0e87ded (diff)
teib: Rename NHRP to TEIB
Type: refactor The Tunnel Endpoint Informatiob Base (TEIB) is a better description of what it is (a mapping between tunnel endpoint address, in the overlay, and next-hop address, in the underlay) whereas NHRP is one instanc eof a control protocol that might add such endpoints. Signed-off-by: Neale Ranns <nranns@cisco.com> Change-Id: Idcb2ad0b6543d3e5d9f6e96f9d14dafb5ce2aa85
Diffstat (limited to 'src/vnet/nhrp/nhrp_api.c')
-rw-r--r--src/vnet/nhrp/nhrp_api.c138
1 files changed, 0 insertions, 138 deletions
diff --git a/src/vnet/nhrp/nhrp_api.c b/src/vnet/nhrp/nhrp_api.c
deleted file mode 100644
index d36adf99e14..00000000000
--- a/src/vnet/nhrp/nhrp_api.c
+++ /dev/null
@@ -1,138 +0,0 @@
-/*
- *------------------------------------------------------------------
- * nhrp_api.c - nhrp api
- *
- * Copyright (c) 2016 Cisco and/or its affiliates.
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at:
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *------------------------------------------------------------------
- */
-
-#include <vnet/vnet.h>
-#include <vlibmemory/api.h>
-
-#include <vnet/api_errno.h>
-#include <vnet/nhrp/nhrp.h>
-#include <vnet/ip/ip_types_api.h>
-#include <vnet/fib/fib_table.h>
-
-/* define message IDs */
-#include <vnet/format_fns.h>
-#include <vnet/nhrp/nhrp.api_enum.h>
-#include <vnet/nhrp/nhrp.api_types.h>
-
-static u32 nhrp_base_msg_id;
-#define REPLY_MSG_ID_BASE nhrp_base_msg_id
-
-#include <vlibapi/api_helper_macros.h>
-
-static void
-vl_api_nhrp_entry_add_del_t_handler (vl_api_nhrp_entry_add_del_t * mp)
-{
- vl_api_nhrp_entry_add_del_reply_t *rmp;
- ip46_address_t peer, nh;
- int rv;
-
- VALIDATE_SW_IF_INDEX ((&mp->entry));
-
- ip_address_decode (&mp->entry.peer, &peer);
- ip_address_decode (&mp->entry.nh, &nh);
-
- if (mp->is_add)
- rv = nhrp_entry_add (ntohl (mp->entry.sw_if_index), &peer,
- ntohl (mp->entry.nh_table_id), &nh);
- else
- rv = nhrp_entry_del (ntohl (mp->entry.sw_if_index), &peer);
-
- BAD_SW_IF_INDEX_LABEL;
-
- REPLY_MACRO (VL_API_NHRP_ENTRY_ADD_DEL_REPLY);
-}
-
-typedef struct vl_api_nhrp_send_t_
-{
- vl_api_registration_t *reg;
- u32 context;
-} vl_api_nhrp_send_t;
-
-static walk_rc_t
-vl_api_nhrp_send_one (index_t nei, void *arg)
-{
- vl_api_nhrp_details_t *mp;
- vl_api_nhrp_send_t *ctx = arg;
- const nhrp_entry_t *ne;
- const fib_prefix_t *pfx;
-
- mp = vl_msg_api_alloc (sizeof (*mp));
- clib_memset (mp, 0, sizeof (*mp));
- mp->_vl_msg_id = ntohs (VL_API_NHRP_DETAILS + REPLY_MSG_ID_BASE);
- mp->context = ctx->context;
-
- ne = nhrp_entry_get (nei);
- pfx = nhrp_entry_get_nh (ne);
-
- ip_address_encode (nhrp_entry_get_peer (ne), IP46_TYPE_ANY,
- &mp->entry.peer);
- ip_address_encode (&pfx->fp_addr, IP46_TYPE_ANY, &mp->entry.nh);
- mp->entry.nh_table_id =
- htonl (fib_table_get_table_id
- (nhrp_entry_get_fib_index (ne), pfx->fp_proto));
- mp->entry.sw_if_index = htonl (nhrp_entry_get_sw_if_index (ne));
-
- vl_api_send_msg (ctx->reg, (u8 *) mp);
-
- return (WALK_CONTINUE);
-}
-
-static void
-vl_api_nhrp_dump_t_handler (vl_api_nhrp_dump_t * mp)
-{
- vl_api_registration_t *reg;
-
- reg = vl_api_client_index_to_registration (mp->client_index);
- if (!reg)
- return;
-
- vl_api_nhrp_send_t ctx = {
- .reg = reg,
- .context = mp->context,
- };
-
- nhrp_walk (vl_api_nhrp_send_one, &ctx);
-}
-
-/*
- * nhrp_api_hookup
- * Add vpe's API message handlers to the table.
- * vlib has already mapped shared memory and
- * added the client registration handlers.
- * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
- */
-#include <vnet/nhrp/nhrp.api.c>
-
-static clib_error_t *
-nhrp_api_hookup (vlib_main_t * vm)
-{
- nhrp_base_msg_id = setup_message_id_table ();
-
- return (NULL);
-}
-
-VLIB_API_INIT_FUNCTION (nhrp_api_hookup);
-
-/*
- * fd.io coding-style-patch-verification: ON
- *
- * Local Variables:
- * eval: (c-set-style "gnu")
- * End:
- */