diff options
author | Filip Tehlar <ftehlar@cisco.com> | 2017-05-17 17:21:10 +0200 |
---|---|---|
committer | Filip Tehlar <ftehlar@cisco.com> | 2017-05-30 07:18:54 +0200 |
commit | d5a65db98d66c66b03b057ac568be05f2456f73c (patch) | |
tree | 8c8c5f14cf8402345e30f24c2491f144e96c8f9b /src/vnet/lisp-cp/control.h | |
parent | cd76436097b9ddda76864af33c85aec9bab074a3 (diff) |
LISP: L2 ARP handling
Change-Id: I1ec328cda73f7eaf7867cd8a2a17852ee0cd23f1
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Diffstat (limited to 'src/vnet/lisp-cp/control.h')
-rw-r--r-- | src/vnet/lisp-cp/control.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/vnet/lisp-cp/control.h b/src/vnet/lisp-cp/control.h index cb98eb09e16..feb8cfa41a3 100644 --- a/src/vnet/lisp-cp/control.h +++ b/src/vnet/lisp-cp/control.h @@ -87,6 +87,12 @@ typedef struct miss_packet_type_t type; } miss_packet_t; +typedef struct +{ + u8 mac[6]; + u32 ip4; +} lisp_api_l2_arp_entry_t; + typedef enum { MR_MODE_DST_ONLY = 0, @@ -114,6 +120,12 @@ typedef enum lisp_flags typedef struct { + ip_address_t addr; + u32 bd; +} lisp_l2_arp_key_t; + +typedef struct +{ u32 flags; /* LISP feature status */ @@ -338,6 +350,9 @@ int vnet_lisp_rloc_probe_enable_disable (u8 is_enable); int vnet_lisp_map_register_enable_disable (u8 is_enable); u8 vnet_lisp_map_register_state_get (void); u8 vnet_lisp_rloc_probe_state_get (void); +int vnet_lisp_add_del_l2_arp_entry (gid_address_t * key, u8 * mac, u8 is_add); +u32 *vnet_lisp_l2_arp_bds_get (void); +lisp_api_l2_arp_entry_t *vnet_lisp_l2_arp_entries_get_by_bd (u32 bd); map_records_arg_t *parse_map_reply (vlib_buffer_t * b); |