From 2bc35fb42096400f0f52e9ec5fdf9d2af0417c90 Mon Sep 17 00:00:00 2001 From: acinonyx Date: Wed, 10 Jun 2009 12:30:49 +0000 Subject: [PATCH] [packages] quagga: Set BGP Hold Timer to a large value on OpenSent state (RFC1771, Par.8) git-svn-id: svn://svn.openwrt.org/openwrt/packages@16398 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- net/quagga/patches/140-holdtimer-set.patch | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 net/quagga/patches/140-holdtimer-set.patch diff --git a/net/quagga/patches/140-holdtimer-set.patch b/net/quagga/patches/140-holdtimer-set.patch new file mode 100644 index 000000000..bfc95d5c1 --- /dev/null +++ b/net/quagga/patches/140-holdtimer-set.patch @@ -0,0 +1,24 @@ +diff --git a/bgpd/bgp_network.c b/bgpd/bgp_network.c +index df37783..c4d5a61 100644 +--- a/bgpd/bgp_network.c ++++ b/bgpd/bgp_network.c +@@ -109,6 +109,7 @@ bgp_accept (struct thread *thread) + peer->fd = bgp_sock; + peer->status = Active; + peer->local_id = peer1->local_id; ++ peer->v_holdtime = BGP_LARGE_HOLDTIME; + + /* Make peer's address string. */ + sockunion2str (&su, buf, SU_ADDRSTRLEN); +diff --git a/bgpd/bgpd.h b/bgpd/bgpd.h +index 4137baf..8615ac8 100644 +--- a/bgpd/bgpd.h ++++ b/bgpd/bgpd.h +@@ -656,6 +656,7 @@ struct bgp_nlri + /* BGP timers default value. */ + #define BGP_INIT_START_TIMER 5 + #define BGP_ERROR_START_TIMER 30 ++#define BGP_LARGE_HOLDTIME 240 + #define BGP_DEFAULT_HOLDTIME 180 + #define BGP_DEFAULT_KEEPALIVE 60 + #define BGP_DEFAULT_ASORIGINATE 15 -- 2.11.0