diff options
author | Matthew Smith <mgsmith@netgate.com> | 2020-04-02 07:45:49 -0500 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2020-04-02 17:28:24 +0000 |
commit | 48d32b43c534c9f52d37b047dbcbc30a8882b52a (patch) | |
tree | 96c405216e10bff552daced2a38d0edcfcb63d58 /src/vat | |
parent | c35f3e835b4078fedabc1ff5013bc4727f533e16 (diff) |
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>
Diffstat (limited to 'src/vat')
-rw-r--r-- | src/vat/api_format.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/vat/api_format.c b/src/vat/api_format.c index 803daafac19..a84a67e75ba 100644 --- a/src/vat/api_format.c +++ b/src/vat/api_format.c @@ -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 |