summaryrefslogtreecommitdiff
path: root/bgpd/bgp_open.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2015-05-19 18:03:47 -0700
committerDonald Sharp <sharpd@cumulusnetworks.com>2015-05-19 18:03:47 -0700
commit3f9c7369f7112d87007b87a5faaa61cdd5e24c39 (patch)
tree2a9f7a8368ea0468932fbb2fd755f8aa92f7a3d9 /bgpd/bgp_open.c
parent759a13f3ccad95e2717871b803729d49be18d995 (diff)
BGP: Add dynamic update group support
This patch implements the 'update-groups' functionality in BGP. This is a function that can significantly improve BGP performance for Update generation and resultant network convergence. BGP Updates are formed for "groups" of peers and then replicated and sent out to each peer rather than being formed for each peer. Thus major BGP operations related to outbound policy application, adj-out maintenance and actual Update packet formation are optimized. BGP update-groups dynamically groups peers together based on configuration as well as run-time criteria. Thus, it is more flexible than update-formation based on peer-groups, which relies on operator configuration. [Note that peer-group based update formation has been introduced into BGP by Cumulus but is currently intended only for specific releases.] From 11098af65b2b8f9535484703e7f40330a71cbae4 Mon Sep 17 00:00:00 2001 Subject: [PATCH] updgrp commits
Diffstat (limited to 'bgpd/bgp_open.c')
-rw-r--r--bgpd/bgp_open.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/bgpd/bgp_open.c b/bgpd/bgp_open.c
index 7aef76d53d..d35be4b1f3 100644
--- a/bgpd/bgp_open.c
+++ b/bgpd/bgp_open.c
@@ -27,6 +27,7 @@ Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
#include "log.h"
#include "command.h"
#include "memory.h"
+#include "queue.h"
#include "bgpd/bgpd.h"
#include "bgpd/bgp_attr.h"