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

网络

开发平台:

Unix_Linux

  1. /* BGP routing table
  2.    Copyright (C) 1998, 2001 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. struct bgp_table
  17. {
  18.   struct bgp_node *top;
  19. };
  20. struct bgp_node
  21. {
  22.   struct prefix p;
  23.   struct bgp_table *table;
  24.   struct bgp_node *parent;
  25.   struct bgp_node *link[2];
  26. #define l_left   link[0]
  27. #define l_right  link[1]
  28.   unsigned int lock;
  29.   void *info;
  30.   struct bgp_adj_out *adj_out;
  31.   struct bgp_adj_in *adj_in;
  32.   void *aggregate;
  33.   struct bgp_node *prn;
  34. };
  35. struct bgp_table *bgp_table_init (void);
  36. void bgp_table_finish (struct bgp_table *);
  37. void bgp_unlock_node (struct bgp_node *node);
  38. void bgp_node_delete (struct bgp_node *node);
  39. struct bgp_node *bgp_table_top (struct bgp_table *);
  40. struct bgp_node *bgp_route_next (struct bgp_node *);
  41. struct bgp_node *bgp_route_next_until (struct bgp_node *, struct bgp_node *);
  42. struct bgp_node *bgp_node_get (struct bgp_table *, struct prefix *);
  43. struct bgp_node *bgp_node_lookup (struct bgp_table *, struct prefix *);
  44. struct bgp_node *bgp_lock_node (struct bgp_node *node);
  45. struct bgp_node *bgp_node_match (struct bgp_table *, struct prefix *);
  46. struct bgp_node *bgp_node_match_ipv4 (struct bgp_table *,
  47.   struct in_addr *);
  48. #ifdef HAVE_IPV6
  49. struct bgp_node *bgp_node_match_ipv6 (struct bgp_table *,
  50.   struct in6_addr *);
  51. #endif /* HAVE_IPV6 */