diff options
author | Alberto Compagno <acompagn+fdio@cisco.com> | 2019-03-23 14:46:14 +0100 |
---|---|---|
committer | Alberto Compagno <acompagn+fdio@cisco.com> | 2019-03-23 16:05:19 +0100 |
commit | 2ba7f1f0bef4ecb20af57283d456e66e31fa667a (patch) | |
tree | 5c29f03e3259bc9def5623152ae9e3eff771f39f /hicn-plugin/src/faces/ip/face_ip.h | |
parent | a2bdc00ea25f89185c1095a48a8f51cb2c1a20e6 (diff) |
[HICN-138] Added number of received/transmitted bytes and packets on each face
Change-Id: Icfe9cd84bdc72afef3d714064e695d1abef368f5
Signed-off-by: Alberto Compagno <acompagn+fdio@cisco.com>
Diffstat (limited to 'hicn-plugin/src/faces/ip/face_ip.h')
-rw-r--r-- | hicn-plugin/src/faces/ip/face_ip.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/hicn-plugin/src/faces/ip/face_ip.h b/hicn-plugin/src/faces/ip/face_ip.h index 8c31f6dd3..852106b70 100644 --- a/hicn-plugin/src/faces/ip/face_ip.h +++ b/hicn-plugin/src/faces/ip/face_ip.h @@ -202,6 +202,13 @@ hicn_iface_ip_add (const ip46_address_t * local_addr, *pfaceid = hicn_dpoi_get_index (face); mhash_set_mem (&hicn_face_ip_remote_hashtb, &key, (uword *) pfaceid, 0); + + for (int i = 0; i < HICN_N_COUNTER; i++) + { + vlib_validate_combined_counter (&counters[(*pfaceid) * HICN_N_COUNTER], + i); + vlib_zero_combined_counter (&counters[(*pfaceid) * HICN_N_COUNTER], i); + } } /** |