diff options
author | Jafar Al-Gharaibeh <jafar@atcorp.com> | 2024-12-20 20:59:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-20 20:59:15 +0100 |
commit | 1b213448a9f8e52338956ea63660de26c6f269c0 (patch) | |
tree | 8db90d41284571e7f4389d3468246264628f0643 /bgpd/bgpd.h | |
parent | Merge pull request #17685 from ykholod/master-17413 (diff) | |
parent | bgpd: add meta queue in bgp (diff) | |
download | frr-1b213448a9f8e52338956ea63660de26c6f269c0.tar.xz frr-1b213448a9f8e52338956ea63660de26c6f269c0.zip |
Merge pull request #17619 from donaldsharp/bgp_metaq_upstream
bgpd: add meta queue in bgp
Diffstat (limited to 'bgpd/bgpd.h')
-rw-r--r-- | bgpd/bgpd.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bgpd/bgpd.h b/bgpd/bgpd.h index dbab2bcf8..196193c4d 100644 --- a/bgpd/bgpd.h +++ b/bgpd/bgpd.h @@ -842,6 +842,9 @@ struct bgp { /* Process Queue for handling routes */ struct work_queue *process_queue; + /* Meta Queue Information */ + struct meta_queue *mq; + bool fast_convergence; /* BGP Conditional advertisement */ |