From 8b30e471df4d42214619e1d6c50cc8298426b45f Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Mon, 12 Feb 2018 08:36:11 -0800 Subject: Allow interface types to override glean adjacency behaivour update the glean adj on a local interface MAC change Change-Id: Ia5c5cde424ed0fea3431532cc5abf22b364bbab5 Signed-off-by: Neale Ranns --- src/vnet/adj/adj_internal.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'src/vnet/adj/adj_internal.h') diff --git a/src/vnet/adj/adj_internal.h b/src/vnet/adj/adj_internal.h index e6d276e4d02..3b7ddb2f10c 100644 --- a/src/vnet/adj/adj_internal.h +++ b/src/vnet/adj/adj_internal.h @@ -78,6 +78,21 @@ adj_fib_proto_2_nd (fib_protocol_t fp) return (0); } +static inline ip46_type_t +adj_proto_to_46 (fib_protocol_t proto) +{ + switch (proto) + { + case FIB_PROTOCOL_IP4: + return (IP46_TYPE_IP4); + case FIB_PROTOCOL_IP6: + return (IP46_TYPE_IP6); + default: + return (IP46_TYPE_IP4); + } + return (IP46_TYPE_IP4); +} + /** * @brief * Get a pointer to an adjacency object from its index -- cgit 1.2.3-korg