diff options
author | Neale Ranns <nranns@cisco.com> | 2018-08-31 02:51:45 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-10-29 12:06:11 +0000 |
commit | cd35e53c928f666e50342e27d69e6dd7d60e1283 (patch) | |
tree | ab4faf6f9d9e28151627df757b6d0dffba4d006f /src/vnet/ip/ip6.h | |
parent | b3a9381ad54ea30bf872cf781023e353a89ebaa6 (diff) |
Use throttle_t for ND throttling
Change-Id: I93c6b7bccd1a1ab71625ae29c99c974581186c4d
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/ip/ip6.h')
-rw-r--r-- | src/vnet/ip/ip6.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/vnet/ip/ip6.h b/src/vnet/ip/ip6.h index bc89a0821ae..e807886cd2a 100644 --- a/src/vnet/ip/ip6.h +++ b/src/vnet/ip/ip6.h @@ -49,6 +49,7 @@ #include <vppinfra/bihash_24_8.h> #include <vppinfra/bihash_template.h> #include <vnet/util/radix.h> +#include <vnet/util/throttle.h> /* * Default size of the ip6 fib hash table @@ -220,10 +221,7 @@ typedef struct ip6_main_t u8 hbh_enabled; /** ND throttling */ - uword **nd_throttle_bitmaps; - u64 *nd_throttle_seeds; - f64 *nd_throttle_last_seed_change_time; - + throttle_t nd_throttle; } ip6_main_t; #define ND_THROTTLE_BITS 512 |