diff options
author | Filip Tehlar <ftehlar@cisco.com> | 2016-09-02 12:14:31 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2016-09-13 07:26:17 +0000 |
commit | c5bb0d6667ca36affe9fb30e58c852e4f1b47f93 (patch) | |
tree | 685a3956fa65dc287914bc860be1b8845d21593e /vpp-api-test/vat/vat.h | |
parent | 22aa3e970da0f0c772c5a16103a5dcf1f2875285 (diff) |
VPP-376: Refactor LISP dump API + VAT
- refactor VAT so it won't cache data
- remove unused filter flag from locator dump API call
- json structure changed for locator and EID table dump calls
- remote mapping VAT cli now accepts string for negative mapping action
Change-Id: I776fb50659aaa7e98ad93715d282a83f78287344
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Diffstat (limited to 'vpp-api-test/vat/vat.h')
-rw-r--r-- | vpp-api-test/vat/vat.h | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/vpp-api-test/vat/vat.h b/vpp-api-test/vat/vat.h index ce8b1667..041b3fb9 100644 --- a/vpp-api-test/vat/vat.h +++ b/vpp-api-test/vat/vat.h @@ -95,35 +95,6 @@ typedef struct typedef struct { - u8 *locator_set_name; - u32 locator_set_index; -} locator_set_msg_t; - -typedef struct -{ - u8 local; - u32 sw_if_index; - u8 is_ipv6; - u8 ip_address[16]; - u8 priority; - u8 weight; -} locator_msg_t; - -typedef struct -{ - u32 locator_set_index; - u8 is_local; - u8 eid_type; - u32 vni; - u8 eid[16]; - u8 eid_prefix_len; - u8 action; - u32 ttl; - u8 authoritative; -} eid_table_t; - -typedef struct -{ /* vpe input queue */ unix_shared_memory_queue_t *vl_input_queue; @@ -210,13 +181,6 @@ typedef struct u32 *ip4_fib_counters_vrf_id_by_index; ip6_fib_counter_t **ip6_fib_counters; u32 *ip6_fib_counters_vrf_id_by_index; - - /* Lisp */ - u8 noprint_msg; - locator_set_msg_t *locator_set_msg; - locator_msg_t *locator_msg; - eid_table_t *eid_tables; - } vat_main_t; vat_main_t vat_main; |