blob: c9e031bfe177b53324f8fcb0ea400913315d6c30 [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_SPF_H
23#define OSPF6_SPF_H
24
hasso508e53e2004-05-18 18:57:06 +000025/* Debug option */
26extern unsigned char conf_debug_ospf6_spf;
hasso3b687352004-08-19 06:56:53 +000027#define OSPF6_DEBUG_SPF_PROCESS 0x01
28#define OSPF6_DEBUG_SPF_TIME 0x02
hasso508e53e2004-05-18 18:57:06 +000029#define OSPF6_DEBUG_SPF_ON(level) \
30 (conf_debug_ospf6_spf |= (level))
31#define OSPF6_DEBUG_SPF_OFF(level) \
32 (conf_debug_ospf6_spf &= ~(level))
33#define IS_OSPF6_DEBUG_SPF(level) \
34 (conf_debug_ospf6_spf & OSPF6_DEBUG_SPF_ ## level)
paul718e3742002-12-13 20:15:29 +000035
36/* Transit Vertex */
37struct ospf6_vertex
38{
39 /* type of this vertex */
40 u_int8_t type;
41
42 /* Vertex Identifier */
hasso508e53e2004-05-18 18:57:06 +000043 struct prefix vertex_id;
paul718e3742002-12-13 20:15:29 +000044
45 /* Identifier String */
hasso508e53e2004-05-18 18:57:06 +000046 char name[128];
47
48 /* Associated Area */
49 struct ospf6_area *area;
paul718e3742002-12-13 20:15:29 +000050
51 /* Associated LSA */
52 struct ospf6_lsa *lsa;
53
hasso508e53e2004-05-18 18:57:06 +000054 /* Distance from Root (i.e. Cost) */
55 u_int32_t cost;
paul718e3742002-12-13 20:15:29 +000056
hasso508e53e2004-05-18 18:57:06 +000057 /* Router hops to this node */
58 u_char hops;
paul718e3742002-12-13 20:15:29 +000059
60 /* nexthops to this node */
hasso508e53e2004-05-18 18:57:06 +000061 struct ospf6_nexthop nexthop[OSPF6_MULTI_PATH_LIMIT];
paul718e3742002-12-13 20:15:29 +000062
63 /* capability bits */
hasso508e53e2004-05-18 18:57:06 +000064 u_char capability;
paul718e3742002-12-13 20:15:29 +000065
66 /* Optional capabilities */
hasso508e53e2004-05-18 18:57:06 +000067 u_char options[3];
68
69 /* For tree display */
70 struct ospf6_vertex *parent;
hasso52dc7ee2004-09-23 19:18:23 +000071 struct list *child_list;
paul718e3742002-12-13 20:15:29 +000072};
73
74#define OSPF6_VERTEX_TYPE_ROUTER 0x01
75#define OSPF6_VERTEX_TYPE_NETWORK 0x02
hasso508e53e2004-05-18 18:57:06 +000076#define VERTEX_IS_TYPE(t, v) \
77 ((v)->type == OSPF6_VERTEX_TYPE_ ## t ? 1 : 0)
paul718e3742002-12-13 20:15:29 +000078
hasso508e53e2004-05-18 18:57:06 +000079void ospf6_spf_table_finish (struct ospf6_route_table *result_table);
80void ospf6_spf_calculation (u_int32_t router_id,
81 struct ospf6_route_table *result_table,
82 struct ospf6_area *oa);
83void ospf6_spf_schedule (struct ospf6_area *oa);
paul718e3742002-12-13 20:15:29 +000084
paul0c083ee2004-10-10 12:54:58 +000085void ospf6_spf_display_subtree (struct vty *vty, const char *prefix,
hasso508e53e2004-05-18 18:57:06 +000086 int rest, struct ospf6_vertex *v);
paul718e3742002-12-13 20:15:29 +000087
hasso508e53e2004-05-18 18:57:06 +000088int config_write_ospf6_debug_spf (struct vty *vty);
89void install_element_ospf6_debug_spf ();
paul718e3742002-12-13 20:15:29 +000090void ospf6_spf_init ();
91
92#endif /* OSPF6_SPF_H */
93