diff options
author | Andrej Kozemcak <akozemca@cisco.com> | 2016-07-13 13:01:01 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2016-07-28 11:55:27 +0000 |
commit | 6cc6f9175c46d9a98db43f47da35119e2b59aa00 (patch) | |
tree | 1269a6b34b04856d0ac7c1813b1adae26069fe4b /vpp-api-test/vat/vat.h | |
parent | 438109d576bd47a2095f2889b708306d37067d50 (diff) |
Edit eid table dump
- change output from eid table
- add eid filter:
all - dump all eid
local - dump local eid
remote - dump remote eid
Change-Id: Ifaaad8abf44cf70c4c22d05252e501456f1f1083
Signed-off-by: Andrej Kozemcak <akozemca@cisco.com>
Diffstat (limited to 'vpp-api-test/vat/vat.h')
-rw-r--r-- | vpp-api-test/vat/vat.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vpp-api-test/vat/vat.h b/vpp-api-test/vat/vat.h index 684ad4c6a14..5f553bcb9f7 100644 --- a/vpp-api-test/vat/vat.h +++ b/vpp-api-test/vat/vat.h @@ -99,6 +99,17 @@ typedef struct { } locator_msg_t; typedef struct { + u32 locator_set_index; + u8 is_local; + u8 eid_type; + u32 vni; + u8 eid[16]; + u8 eid_prefix_len; + u32 ttl; + u8 authoritative; +} eid_table_t; + +typedef struct { /* vpe input queue */ unix_shared_memory_queue_t * vl_input_queue; @@ -189,6 +200,7 @@ typedef struct { u8 noprint_msg; locator_set_msg_t * locator_set_msg; locator_msg_t * locator_msg; + eid_table_t * eid_tables; } vat_main_t; |