ipsec: provide stat index in sa details
Type: improvement When IPsec SAs are dumped, include the index that can be used to find byte & packet counters for the SA in the stat segment. Removed the field total_data_size from the details since it was not being populated and put the stat index field in its place. Change-Id: If73efc230542a11944551b6e710b57b575450da3 Signed-off-by: Matthew Smith <mgsmith@netgate.com>
This commit is contained in:

committed by
Neale Ranns

parent
c35f3e835b
commit
48d32b43c5
@@ -13804,7 +13804,7 @@ vl_api_ipsec_sa_details_t_handler (vl_api_ipsec_sa_details_t * mp)
|
||||
"crypto_key %U integ_alg %u integ_key %U flags %x "
|
||||
"tunnel_src_addr %U tunnel_dst_addr %U "
|
||||
"salt %u seq_outbound %lu last_seq_inbound %lu "
|
||||
"replay_window %lu\n",
|
||||
"replay_window %lu stat_index %u\n",
|
||||
ntohl (mp->entry.sad_id),
|
||||
ntohl (mp->sw_if_index),
|
||||
ntohl (mp->entry.spi),
|
||||
@@ -13818,7 +13818,7 @@ vl_api_ipsec_sa_details_t_handler (vl_api_ipsec_sa_details_t * mp)
|
||||
&mp->entry.tunnel_dst, ntohl (mp->salt),
|
||||
clib_net_to_host_u64 (mp->seq_outbound),
|
||||
clib_net_to_host_u64 (mp->last_seq_inbound),
|
||||
clib_net_to_host_u64 (mp->replay_window));
|
||||
clib_net_to_host_u64 (mp->replay_window), ntohl (mp->stat_index));
|
||||
}
|
||||
|
||||
#define vl_api_ipsec_sa_details_t_endian vl_noop_handler
|
||||
@@ -13866,6 +13866,7 @@ static void vl_api_ipsec_sa_details_t_handler_json
|
||||
vat_json_object_add_address (node, "dst", &mp->entry.tunnel_dst);
|
||||
vat_json_object_add_uint (node, "replay_window",
|
||||
clib_net_to_host_u64 (mp->replay_window));
|
||||
vat_json_object_add_uint (node, "stat_index", ntohl (mp->stat_index));
|
||||
}
|
||||
|
||||
static int
|
||||
|
Reference in New Issue
Block a user