blob: 4b2d2c3efce4df2f479ecddbaebbb9f5f7034223 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
hasso508e53e2004-05-18 18:57:06 +00002 * Copyright (C) 2003 Yasuhiro Ohara
paul718e3742002-12-13 20:15:29 +00003 *
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
22#ifndef OSPF6_TOP_H
23#define OSPF6_TOP_H
24
25#include "routemap.h"
26
hasso508e53e2004-05-18 18:57:06 +000027/* OSPFv3 top level data structure */
paul718e3742002-12-13 20:15:29 +000028struct ospf6
29{
hasso508e53e2004-05-18 18:57:06 +000030 /* my router id */
31 u_int32_t router_id;
paul718e3742002-12-13 20:15:29 +000032
hassoc8a440e2004-10-11 17:02:40 +000033 /* static router id */
34 u_int32_t router_id_static;
35
paul718e3742002-12-13 20:15:29 +000036 /* start time */
37 struct timeval starttime;
38
paul718e3742002-12-13 20:15:29 +000039 /* list of areas */
hasso52dc7ee2004-09-23 19:18:23 +000040 struct list *area_list;
paul718e3742002-12-13 20:15:29 +000041
42 /* AS scope link state database */
43 struct ospf6_lsdb *lsdb;
hasso6452df02004-08-15 05:52:07 +000044 struct ospf6_lsdb *lsdb_self;
paul718e3742002-12-13 20:15:29 +000045
hasso508e53e2004-05-18 18:57:06 +000046 struct ospf6_route_table *route_table;
hasso049207c2004-08-04 20:02:13 +000047 struct ospf6_route_table *brouter_table;
hasso508e53e2004-05-18 18:57:06 +000048
49 struct ospf6_route_table *external_table;
50 struct route_table *external_id_table;
51 u_int32_t external_id;
52
paul718e3742002-12-13 20:15:29 +000053 /* redistribute route-map */
54 struct
55 {
56 char *name;
57 struct route_map *map;
58 } rmap[ZEBRA_ROUTE_MAX];
59
hasso508e53e2004-05-18 18:57:06 +000060 u_char flag;
paul718e3742002-12-13 20:15:29 +000061
62 struct thread *maxage_remover;
paul718e3742002-12-13 20:15:29 +000063};
hasso508e53e2004-05-18 18:57:06 +000064
65#define OSPF6_DISABLED 0x01
66
67/* global pointer for OSPF top data structure */
paul718e3742002-12-13 20:15:29 +000068extern struct ospf6 *ospf6;
69
70/* prototypes */
Paul Jakma6ac29a52008-08-15 13:45:30 +010071extern void ospf6_top_init (void);
Tom Goffae2254a2010-11-10 13:01:41 -080072extern void ospf6_delete (struct ospf6 *o);
paul718e3742002-12-13 20:15:29 +000073
Paul Jakma6ac29a52008-08-15 13:45:30 +010074extern void ospf6_maxage_remove (struct ospf6 *o);
hasso508e53e2004-05-18 18:57:06 +000075
paul718e3742002-12-13 20:15:29 +000076#endif /* OSPF6_TOP_H */
77
hasso508e53e2004-05-18 18:57:06 +000078