diff options
author | Neale Ranns <neale.ranns@cisco.com> | 2018-09-28 05:00:57 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-10-01 17:02:18 +0000 |
commit | 14260393c096b270ef318d74b481911c7def0496 (patch) | |
tree | 29bbd213ea550254b15131684e34032b4b8ab9e7 /src/vnet/ip/ip_neighbor.h | |
parent | 5df628bb8a30b69f223a7c8b017dcba770c87e43 (diff) |
Add adjacency counters to the stats segment
Change-Id: I6b59df939c9daf40e261d73d19f500bd90abe6ff
Signed-off-by: Neale Ranns <neale.ranns@cisco.com>
Diffstat (limited to 'src/vnet/ip/ip_neighbor.h')
-rw-r--r-- | src/vnet/ip/ip_neighbor.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vnet/ip/ip_neighbor.h b/src/vnet/ip/ip_neighbor.h index b865862c06e..9eeebdb1555 100644 --- a/src/vnet/ip/ip_neighbor.h +++ b/src/vnet/ip/ip_neighbor.h @@ -45,7 +45,8 @@ typedef enum ip_neighbor_flags_t_ extern int ip_neighbor_add (const ip46_address_t * ip, u8 is_ip6, const u8 * mac, - u32 sw_if_index, ip_neighbor_flags_t flags); + u32 sw_if_index, + ip_neighbor_flags_t flags, u32 * stats_index); extern int ip_neighbor_del (const ip46_address_t * ip, u8 is_ip6, u32 sw_if_index); |