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

网络

开发平台:

Unix_Linux

  1. /*
  2.  * Zebra connect library for OSPFd
  3.  * Copyright (C) 1997, 98, 99, 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
  19.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  20.  * Boston, MA 02111-1307, USA. 
  21.  */
  22. #ifndef _ZEBRA_OSPF_ZEBRA_H
  23. #define _ZEBRA_OSPF_ZEBRA_H
  24. #define EXTERNAL_METRIC_TYPE_1      0
  25. #define EXTERNAL_METRIC_TYPE_2      1
  26. #define DEFAULT_ROUTE     ZEBRA_ROUTE_MAX
  27. #define DEFAULT_ROUTE_TYPE(T) ((T) == DEFAULT_ROUTE)
  28. /* OSPF distance. */
  29. struct ospf_distance
  30. {
  31.   /* Distance value for the IP source prefix. */
  32.   u_char distance;
  33.   /* Name of the access-list to be matched. */
  34.   char *access_list;
  35. };
  36. /* Prototypes */
  37. void ospf_zclient_start ();
  38. void ospf_zebra_add (struct prefix_ipv4 *, struct ospf_route *);
  39. void ospf_zebra_delete (struct prefix_ipv4 *, struct ospf_route *);
  40. void ospf_zebra_add_discard (struct prefix_ipv4 *);
  41. void ospf_zebra_delete_discard (struct prefix_ipv4 *);
  42. int ospf_default_originate_timer (struct thread *);
  43. int ospf_redistribute_check (struct ospf *, struct external_info *, int *);
  44. int ospf_distribute_check_connected (struct ospf *, struct external_info *);
  45. void ospf_distribute_list_update (struct ospf *, int);
  46. int ospf_is_type_redistributed (int);
  47. void ospf_distance_reset (struct ospf *);
  48. u_char ospf_distance_apply (struct prefix_ipv4 *, struct ospf_route *);
  49. struct vty;
  50. int ospf_redistribute_set (struct ospf *, int, int, int);
  51. int ospf_redistribute_unset (struct ospf *, int);
  52. int ospf_redistribute_default_set (struct ospf *, int, int, int);
  53. int ospf_redistribute_default_unset (struct ospf *);
  54. int ospf_distribute_list_out_set (struct ospf *, int, char *);
  55. int ospf_distribute_list_out_unset (struct ospf *, int, char *);
  56. void ospf_routemap_set (struct ospf *, int, char *);
  57. void ospf_routemap_unset (struct ospf *, int);
  58. int ospf_distance_set (struct vty *, struct ospf *, char *, char *, char *);
  59. int ospf_distance_unset (struct vty *, struct ospf *, char *, char *, char *);
  60. void ospf_zebra_init ();
  61. #endif /* _ZEBRA_OSPF_ZEBRA_H */