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

网络

开发平台:

Unix_Linux

  1. /* zebra connection and redistribute fucntions.
  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
  14. Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  15. Boston, MA 02111-1307, USA.  */
  16. int bgp_if_update_all ();
  17. int bgp_config_write_redistribute (struct vty *, struct bgp *, afi_t, safi_t,
  18.    int *);
  19. void bgp_zebra_announce (struct prefix *, struct bgp_info *, struct bgp *);
  20. void bgp_zebra_withdraw (struct prefix *, struct bgp_info *);
  21. int bgp_redistribute_set (struct bgp *, afi_t, int);
  22. int bgp_redistribute_rmap_set (struct bgp *, afi_t, int, char *);
  23. int bgp_redistribute_metric_set (struct bgp *, afi_t, int, u_int32_t);
  24. int bgp_redistribute_unset (struct bgp *, afi_t, int);
  25. int bgp_redistribute_routemap_unset (struct bgp *, afi_t, int);
  26. int bgp_redistribute_metric_unset (struct bgp *, afi_t, int);
  27. struct interface *if_lookup_by_ipv4 (struct in_addr *);
  28. struct interface *if_lookup_by_ipv4_exact (struct in_addr *);
  29. #ifdef HAVE_IPV6
  30. struct interface *if_lookup_by_ipv6 (struct in6_addr *);
  31. struct interface *if_lookup_by_ipv6_exact (struct in6_addr *);
  32. #endif /* HAVE_IPV6 */