VPP-362 Implement dumping of LISP adjacencies

Change-Id: Ieea56f3bf9e749878d9f2b35d39d9f7a9cdabde4
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
This commit is contained in:
Filip Tehlar
2016-09-23 10:00:52 +02:00
committed by Florin Coras
parent 75fc854da7
commit 69a9b76d64
10 changed files with 364 additions and 5 deletions

View File

@ -35,6 +35,7 @@ format_struct = {'u8': 'B',
'f64' : 'd',
'vl_api_ip4_fib_counter_t' : 'IBQQ',
'vl_api_ip6_fib_counter_t' : 'QQBQQ',
'vl_api_lisp_adjacency_t' : 'B' * 35,
};
#
# NB: If new types are introduced in vpe.api, these must be updated.
@ -47,6 +48,7 @@ type_size = {'u8': 1,
'f64' : 8,
'vl_api_ip4_fib_counter_t' : 21,
'vl_api_ip6_fib_counter_t' : 33,
'vl_api_lisp_adjacency_t' : 35,
};
def get_args(t):