diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2025-03-06 20:15:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-06 20:15:19 +0200 |
| commit | 26d1e5ce17594c47201b95deb83b842ca5300a4f (patch) | |
| tree | 210c6d0215a4032798334ac37212dd260ea95e93 /zebra/zebra_router.h | |
| parent | f3a7077df01176164c0bb5775ecb886cf233089e (diff) | |
| parent | 10ff0d5e4cf08dacf2bf82b2350dac403633e380 (diff) | |
Merge pull request #18214 from soumyar-roy/soumya/ra514nei
zebra: Bring up 514 BGP neighbor sessions
Diffstat (limited to 'zebra/zebra_router.h')
| -rw-r--r-- | zebra/zebra_router.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/zebra/zebra_router.h b/zebra/zebra_router.h index 28c4cf0790..d357994ec2 100644 --- a/zebra/zebra_router.h +++ b/zebra/zebra_router.h @@ -112,12 +112,19 @@ struct zebra_mlag_info { struct event *t_write; }; +#define RTADV_TIMER_WHEEL_PERIOD_MS 1000 +#define RTADV_TIMER_WHEEL_SLOTS_NO 100 +#define ICMPV6_JOIN_TIMER_EXP_MS 100 + struct zebra_router { atomic_bool in_shutdown; /* Thread master */ struct event_loop *master; + /* Wheel to process V6 RA update */ + struct timer_wheel *ra_wheel; + /* Lists of clients who have connected to us */ struct list *client_list; |
