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

网络

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (C) 2003 Yasuhiro Ohara
  3.  *
  4.  * This file is part of GNU Zebra.
  5.  *
  6.  * GNU Zebra is free software; you can redistribute it and/or modify it
  7.  * under the terms of the GNU General Public License as published by the
  8.  * Free Software Foundation; either version 2, or (at your option) any
  9.  * later version.
  10.  *
  11.  * GNU Zebra is distributed in the hope that it will be useful, but
  12.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with GNU Zebra; see the file COPYING.  If not, write to the 
  18.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 
  19.  * Boston, MA 02111-1307, USA.  
  20.  */
  21. #ifndef OSPF6_TOP_H
  22. #define OSPF6_TOP_H
  23. #include "routemap.h"
  24. /* OSPFv3 top level data structure */
  25. struct ospf6
  26. {
  27.   /* my router id */
  28.   u_int32_t router_id;
  29.   /* start time */
  30.   struct timeval starttime;
  31.   /* list of areas */
  32.   list area_list;
  33.   /* AS scope link state database */
  34.   struct ospf6_lsdb *lsdb;
  35.   struct ospf6_lsdb *lsdb_self;
  36.   struct ospf6_route_table *route_table;
  37.   struct ospf6_route_table *brouter_table;
  38.   struct ospf6_route_table *external_table;
  39.   struct route_table *external_id_table;
  40.   u_int32_t external_id;
  41.   /* redistribute route-map */
  42.   struct
  43.   {
  44.     char *name;
  45.     struct route_map *map;
  46.   } rmap[ZEBRA_ROUTE_MAX];
  47.   u_char flag;
  48.   struct thread *maxage_remover;
  49. };
  50. #define OSPF6_DISABLED    0x01
  51. /* global pointer for OSPF top data structure */
  52. extern struct ospf6 *ospf6;
  53. /* prototypes */
  54. void ospf6_top_init ();
  55. void ospf6_maxage_remove (struct ospf6 *o);
  56. #endif /* OSPF6_TOP_H */