bgp_fsm.h
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:2k
源码类别:

网络

开发平台:

Unix_Linux

  1. /* BGP-4 Finite State Machine   
  2.    From RFC1771 [A Border Gateway Protocol 4 (BGP-4)]
  3.    Copyright (C) 1998 Kunihiro Ishiguro
  4. This file is part of GNU Zebra.
  5. GNU Zebra is free software; you can redistribute it and/or modify it
  6. under the terms of the GNU General Public License as published by the
  7. Free Software Foundation; either version 2, or (at your option) any
  8. later version.
  9. GNU Zebra is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with GNU Zebra; see the file COPYING.  If not, write to the Free
  15. Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  16. 02111-1307, USA.  */
  17. /* Macro for BGP read, write and timer thread.  */
  18. #define BGP_READ_ON(T,F,V)   THREAD_READ_ON(master,T,F,peer,V)
  19. #define BGP_READ_OFF(X)      THREAD_READ_OFF(X)
  20. #define BGP_WRITE_ON(T,F,V)  THREAD_WRITE_ON(master,T,F,peer,V)
  21. #define BGP_WRITE_OFF(X)     THREAD_WRITE_OFF(X)
  22. #define BGP_TIMER_ON(T,F,V)  THREAD_TIMER_ON(master,T,F,peer,V)
  23. #define BGP_TIMER_OFF(X)     THREAD_TIMER_OFF(X)
  24. #define BGP_EVENT_ADD(P,E) 
  25.     thread_add_event (master, bgp_event, (P), (E))
  26. #define BGP_EVENT_DELETE(P) 
  27.     thread_cancel_event (master, (P))
  28. /* Prototypes. */
  29. int bgp_event (struct thread *);
  30. int bgp_stop (struct peer *peer);
  31. int bgp_stop_with_error (struct peer *peer);
  32. void bgp_timer_set (struct peer *);
  33. void bgp_fsm_change_status (struct peer *peer, int status);
  34. extern char *peer_down_str[];
  35. void bgp_routeadv_timer (struct peer *, afi_t, safi_t);