diff options
author | Chris Hall <GMCH@hestia.halldom.com> | 2010-01-31 18:41:22 +0000 |
---|---|---|
committer | Chris Hall <GMCH@hestia.halldom.com> | 2010-01-31 18:41:22 +0000 |
commit | 64b08a2d2ec89e5464d7489f239a5b23a7a0c17b (patch) | |
tree | a95f5c4c449735a51dcfb49c880e7a8c023cb9cf /bgpd/bgp_route.c | |
parent | abf662dd4bf9d688826378677f14f4b20d07d107 (diff) | |
download | quagga-64b08a2d2ec89e5464d7489f239a5b23a7a0c17b.tar.bz2 quagga-64b08a2d2ec89e5464d7489f239a5b23a7a0c17b.tar.xz |
Testing and fixing round.
modified: bgpd/bgp_msg_read.c -- fix to accept updates when
sEstablished !
modified: bgpd/bgp_packet.c -- modified XON/XOFF handling
modified: bgpd/bgp_peer.c -- fix event handling to discard
events when sLimping.
modified: bgpd/bgp_route.c -- announce routes when sEstablished
modified: bgpd/bgp_session.c -- add XOFF test
free stream in update_receive
when mqb_destroy
modified: bgpd/bgp_session.h -- add XOFF threshold & XOFF test
modified: bgpd/bgpd.c -- PRO TEM reenable in bgp_clear
for max-prefix handling
modified: lib/log.c -- fix zlog_backtrace
modified: lib/mqueue.c -- dasserts for mqb_free_count
Diffstat (limited to 'bgpd/bgp_route.c')
-rw-r--r-- | bgpd/bgp_route.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c index 27e28fd3..d592e970 100644 --- a/bgpd/bgp_route.c +++ b/bgpd/bgp_route.c @@ -1411,7 +1411,7 @@ bgp_process_announce_selected (struct peer *peer, struct bgp_info *selected, p = &rn->p; /* Announce route to Established peer. */ - if (peer->state == bgp_peer_sEstablished) + if (peer->state != bgp_peer_sEstablished) return 0; /* Address family configuration check. */ |