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

网络

开发平台:

Unix_Linux

  1. /*
  2.  * OSPF AS Boundary Router functions.
  3.  * Copyright (C) 1999, 2000 Kunihiro Ishiguro, Toshiaki Takada
  4.  *
  5.  * This file is part of GNU Zebra.
  6.  *
  7.  * GNU Zebra is free software; you can redistribute it and/or modify it
  8.  * under the terms of the GNU General Public License as published by the
  9.  * Free Software Foundation; either version 2, or (at your option) any
  10.  * later version.
  11.  *
  12.  * GNU Zebra is distributed in the hope that it will be useful, but
  13.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15.  * General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with GNU Zebra; see the file COPYING.  If not, write to the Free
  19.  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  20.  * 02111-1307, USA.
  21.  */
  22. #ifndef _ZEBRA_OSPF_ASBR_H
  23. #define _ZEBRA_OSPF_ASBR_H
  24. struct route_map_set_values
  25. {
  26.   int32_t metric;
  27.   int32_t metric_type;
  28. };
  29. /* Redistributed external information. */
  30. struct external_info
  31. {
  32.   /* Type of source protocol. */
  33.   u_char type;
  34.   /* Prefix. */
  35.   struct prefix_ipv4 p;
  36.   /* Interface index. */
  37.   unsigned int ifindex;
  38.   /* Nexthop address. */
  39.   struct in_addr nexthop;
  40.   /* Additional Route tag. */
  41.   u_int32_t tag;
  42.   struct route_map_set_values route_map_set;
  43. #define ROUTEMAP_METRIC(E)      (E)->route_map_set.metric
  44. #define ROUTEMAP_METRIC_TYPE(E) (E)->route_map_set.metric_type
  45. };
  46. #define OSPF_ASBR_CHECK_DELAY 30
  47. void ospf_external_route_remove (struct ospf *, struct prefix_ipv4 *);
  48. struct external_info *ospf_external_info_new (u_char);
  49. void ospf_reset_route_map_set_values (struct route_map_set_values *);
  50. int ospf_route_map_set_compare (struct route_map_set_values *,
  51. struct route_map_set_values *);
  52. struct external_info *ospf_external_info_add (u_char, struct prefix_ipv4,
  53.       unsigned int, struct in_addr);
  54. void ospf_external_info_delete (u_char, struct prefix_ipv4);
  55. struct external_info *ospf_external_info_lookup (u_char, struct prefix_ipv4 *);
  56. void ospf_asbr_status_update (struct ospf *, u_char);
  57. void ospf_redistribute_withdraw (u_char);
  58. void ospf_asbr_check ();
  59. void ospf_schedule_asbr_check ();
  60. void ospf_asbr_route_install_lsa (struct ospf_lsa *);
  61. struct ospf_lsa *ospf_external_info_find_lsa (struct ospf *,
  62.       struct prefix_ipv4 *p);
  63. #endif /* _ZEBRA_OSPF_ASBR_H */