diff options
author | Vasilis Tsiligiannis <acinonyx@openwrt.gr> | 2009-07-26 12:15:07 +0000 |
---|---|---|
committer | Vasilis Tsiligiannis <acinonyx@openwrt.gr> | 2009-07-26 12:15:07 +0000 |
commit | 5b7e8203d36dfbb13039d12646c0b70c17c7dcd7 (patch) | |
tree | 8497c488eada4d194beca5b8d4b2f4f03f7b9ff7 /package | |
parent | 24d4b8f31a9c168eabb089a0ac44e0697eeb7545 (diff) | |
download | upstream-5b7e8203d36dfbb13039d12646c0b70c17c7dcd7.tar.gz upstream-5b7e8203d36dfbb13039d12646c0b70c17c7dcd7.tar.bz2 upstream-5b7e8203d36dfbb13039d12646c0b70c17c7dcd7.zip |
quagga-unstable: Set Hold Timer to a large value on OpenSent state (RFC1771, Par.8)
SVN-Revision: 17011
Diffstat (limited to 'package')
-rw-r--r-- | package/openwrt-packages/net/quagga-unstable/patches/140-holdtimer-set.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/package/openwrt-packages/net/quagga-unstable/patches/140-holdtimer-set.patch b/package/openwrt-packages/net/quagga-unstable/patches/140-holdtimer-set.patch new file mode 100644 index 0000000000..1895f548f6 --- /dev/null +++ b/package/openwrt-packages/net/quagga-unstable/patches/140-holdtimer-set.patch @@ -0,0 +1,22 @@ +--- a/bgpd/bgp_network.c ++++ b/bgpd/bgp_network.c +@@ -185,8 +185,7 @@ bgp_accept (struct thread *thread) + peer->fd = bgp_sock; + peer->status = Active; + peer->local_id = peer1->local_id; +- peer->v_holdtime = peer1->v_holdtime; +- peer->v_keepalive = peer1->v_keepalive; ++ peer->v_holdtime = BGP_LARGE_HOLDTIME; + + /* Make peer's address string. */ + sockunion2str (&su, buf, SU_ADDRSTRLEN); +--- a/bgpd/bgpd.h ++++ b/bgpd/bgpd.h +@@ -709,6 +709,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 |