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/vnet/ipsec/ipsec_api.c | |
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/vnet/ipsec/ipsec_api.c')
-rw-r--r-- | src/vnet/ipsec/ipsec_api.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vnet/ipsec/ipsec_api.c b/src/vnet/ipsec/ipsec_api.c index ded6e70bb20..4a55a29c288 100644 --- a/src/vnet/ipsec/ipsec_api.c +++ b/src/vnet/ipsec/ipsec_api.c @@ -827,6 +827,8 @@ send_ipsec_sa_details (ipsec_sa_t * sa, void *arg) if (ipsec_sa_is_set_USE_ANTI_REPLAY (sa)) mp->replay_window = clib_host_to_net_u64 (sa->replay_window); + mp->stat_index = clib_host_to_net_u32 (sa->stat_index); + vl_api_send_msg (ctx->reg, (u8 *) mp); return (WALK_CONTINUE); |