diff options
author | Neale Ranns <nranns@cisco.com> | 2018-09-07 09:32:36 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-09-20 10:05:11 +0000 |
commit | 008dbe109ce2714be69ffb6549a0c0198a07f7d0 (patch) | |
tree | 6a4a4d7fb7c884036a6c4a1cda6e866d7087eb4c /src/vnet/fib/fib_table.h | |
parent | ee2e58f6ea802437ed52cc3e4d59b89d92757135 (diff) |
Route counters in the stats segment
route ADD API changed to return the stats segment index to use to read the counters
Change-Id: I2ef41e01eaa2f9cfaa49d9c88968897793825925
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/fib/fib_table.h')
-rw-r--r-- | src/vnet/fib/fib_table.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/vnet/fib/fib_table.h b/src/vnet/fib/fib_table.h index 8b86f8d6dd9..f13dd77c8b4 100644 --- a/src/vnet/fib/fib_table.h +++ b/src/vnet/fib/fib_table.h @@ -596,6 +596,17 @@ extern void fib_table_entry_delete_index(fib_node_index_t entry_index, /** * @brief + * Return the stats index for a FIB entry + * @param fib_index + * The table's FIB index + * @param prefix + * The entry's prefix's + */ +extern u32 fib_table_entry_get_stats_index(u32 fib_index, + const fib_prefix_t *prefix); + +/** + * @brief * Flush all entries from a table for the source * * @param fib_index |