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

网络

开发平台:

Unix_Linux

  1. /* BGP packet management header.
  2.    Copyright (C) 1999 Kunihiro Ishiguro
  3. This file is part of GNU Zebra.
  4. GNU Zebra is free software; you can redistribute it and/or modify it
  5. under the terms of the GNU General Public License as published by the
  6. Free Software Foundation; either version 2, or (at your option) any
  7. later version.
  8. GNU Zebra is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11. General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GNU Zebra; see the file COPYING.  If not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  15. 02111-1307, USA.  */
  16. #define BGP_NLRI_LENGTH       1
  17. #define BGP_TOTAL_ATTR_LEN    2
  18. #define BGP_UNFEASIBLE_LEN    2
  19. #define BGP_WRITE_PACKET_MAX 10
  20. /* When to refresh */
  21. #define REFRESH_IMMEDIATE 1
  22. #define REFRESH_DEFER     2 
  23. /* ORF Common part flag */
  24. #define ORF_COMMON_PART_ADD        0x00 
  25. #define ORF_COMMON_PART_REMOVE     0x80 
  26. #define ORF_COMMON_PART_REMOVE_ALL 0xC0 
  27. #define ORF_COMMON_PART_PERMIT     0x00 
  28. #define ORF_COMMON_PART_DENY       0x20 
  29. /* Packet send and receive function prototypes. */
  30. int bgp_read (struct thread *);
  31. int bgp_write (struct thread *);
  32. void bgp_keepalive_send (struct peer *);
  33. void bgp_open_send (struct peer *);
  34. void bgp_notify_send (struct peer *, u_char, u_char);
  35. void bgp_notify_send_with_data (struct peer *, u_char, u_char, u_char *, size_t);
  36. void bgp_route_refresh_send (struct peer *, afi_t, safi_t, u_char, u_char, int);
  37. void bgp_capability_send (struct peer *, afi_t, safi_t, int, int);
  38. void bgp_default_update_send (struct peer *, struct attr *,
  39.       afi_t, safi_t, struct peer *);
  40. void bgp_default_withdraw_send (struct peer *, afi_t, safi_t);