restart BGP on receipt of CEASE
This commit is contained in:
parent
4b02e4442e
commit
a8823a7dfa
4 changed files with 6 additions and 4 deletions
3
Changes
3
Changes
|
|
@ -1,7 +1,8 @@
|
|||
* Thu Sep 1 2005 Brendan O'Dea <bod@optus.net> 2.1.5
|
||||
* Sat Sep 3 2005 Brendan O'Dea <bod@optus.net> 2.1.5
|
||||
- Avoid Code-Reject loop.
|
||||
- Increase size of PPP buffers to MAXETHER.
|
||||
- Bug fixes for CLI ringbuffer and tunnel HELLO from Yuri.
|
||||
- Restart rather than halt BGP on receipt of CEASE (Dominique Rousseau).
|
||||
|
||||
* Mon Aug 29 2005 Brendan O'Dea <bod@optus.net> 2.1.4
|
||||
- Drop level of "Unexpected CHAP message" log.
|
||||
|
|
|
|||
1
THANKS
1
THANKS
|
|
@ -17,3 +17,4 @@ Roberto Chostakovis <rchostakovis@users.sourceforge.net>
|
|||
Jordan Hrycaj <jordan@mjh.teddy-net.com>
|
||||
Vladislav Bjelic <vladislav@gmail.com>
|
||||
Alex Kiernan <alex.kiernan@gmail.com>
|
||||
Dominique Rousseau <d.rousseau@nnx.com>
|
||||
|
|
|
|||
4
bgp.c
4
bgp.c
|
|
@ -10,7 +10,7 @@
|
|||
* nor RFC2385 (which requires a kernel patch on 2.4 kernels).
|
||||
*/
|
||||
|
||||
char const *cvs_id_bgp = "$Id: bgp.c,v 1.11 2005-07-31 10:04:09 bodea Exp $";
|
||||
char const *cvs_id_bgp = "$Id: bgp.c,v 1.12 2005-09-02 23:39:36 bodea Exp $";
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
|
|
@ -996,7 +996,7 @@ static int bgp_handle_input(struct bgp_peer *peer)
|
|||
if (notification->error_code == BGP_ERR_CEASE)
|
||||
{
|
||||
LOG(4, 0, 0, "BGP peer %s sent CEASE\n", peer->name);
|
||||
bgp_halt(peer);
|
||||
bgp_restart(peer);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -43,5 +43,5 @@ rm -rf %{buildroot}
|
|||
%attr(644,root,root) /usr/share/man/man[58]/*
|
||||
|
||||
%changelog
|
||||
* Thu Sep 1 2005 Brendan O'Dea <bod@optus.net> 2.1.5-1
|
||||
* Sat Sep 3 2005 Brendan O'Dea <bod@optus.net> 2.1.5-1
|
||||
- 2.1.5 release, see /usr/share/doc/l2tpns-2.1.5/Changes
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue