blob: e5e2660ba4c94773a62c4aafafa051439b3dd1d7 [file] [log] [blame]
hasso049207c2004-08-04 20:02:13 +00001/*
2 * Copyright (C) 2004 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
22#ifndef OSPF6_ABR_H
23#define OSPF6_ABR_H
24
Denis Ovsienkoa0bf59b2011-08-20 23:12:00 +040025/* for struct ospf6_route */
26#include "ospf6_route.h"
Paul Jakma7aa9dce2014-09-19 14:42:23 +010027/* for struct ospf6_prefix */
28#include "ospf6_proto.h"
Denis Ovsienkoa0bf59b2011-08-20 23:12:00 +040029
hasso049207c2004-08-04 20:02:13 +000030/* Debug option */
31extern unsigned char conf_debug_ospf6_abr;
32#define OSPF6_DEBUG_ABR_ON() \
33 (conf_debug_ospf6_abr = 1)
34#define OSPF6_DEBUG_ABR_OFF() \
35 (conf_debug_ospf6_abr = 0)
36#define IS_OSPF6_DEBUG_ABR \
37 (conf_debug_ospf6_abr)
38
39/* Inter-Area-Prefix-LSA */
Denis Ovsienkoabc7ef42011-09-26 13:18:51 +040040#define OSPF6_INTER_PREFIX_LSA_MIN_SIZE 4U /* w/o IPv6 prefix */
hasso049207c2004-08-04 20:02:13 +000041struct ospf6_inter_prefix_lsa
42{
43 u_int32_t metric;
44 struct ospf6_prefix prefix;
45};
46
47/* Inter-Area-Router-LSA */
Denis Ovsienkoabc7ef42011-09-26 13:18:51 +040048#define OSPF6_INTER_ROUTER_LSA_FIX_SIZE 12U
hasso049207c2004-08-04 20:02:13 +000049struct ospf6_inter_router_lsa
50{
51 u_char mbz;
52 u_char options[3];
53 u_int32_t metric;
54 u_int32_t router_id;
55};
56
57#define OSPF6_ABR_SUMMARY_METRIC(E) (ntohl ((E)->metric & htonl (0x00ffffff)))
58#define OSPF6_ABR_SUMMARY_METRIC_SET(E,C) \
59 { (E)->metric &= htonl (0x00000000); \
60 (E)->metric |= htonl (0x00ffffff) & htonl (C); }
61
Paul Jakma6ac29a52008-08-15 13:45:30 +010062extern int ospf6_is_router_abr (struct ospf6 *o);
hasso6452df02004-08-15 05:52:07 +000063
Paul Jakma6ac29a52008-08-15 13:45:30 +010064extern void ospf6_abr_enable_area (struct ospf6_area *oa);
65extern void ospf6_abr_disable_area (struct ospf6_area *oa);
hasso3b687352004-08-19 06:56:53 +000066
Paul Jakma6ac29a52008-08-15 13:45:30 +010067extern void ospf6_abr_originate_summary_to_area (struct ospf6_route *route,
68 struct ospf6_area *area);
69extern void ospf6_abr_originate_summary (struct ospf6_route *route);
70extern void ospf6_abr_examin_summary (struct ospf6_lsa *lsa, struct ospf6_area *oa);
71extern void ospf6_abr_examin_brouter (u_int32_t router_id);
72extern void ospf6_abr_reimport (struct ospf6_area *oa);
hasso049207c2004-08-04 20:02:13 +000073
Paul Jakma6ac29a52008-08-15 13:45:30 +010074extern int config_write_ospf6_debug_abr (struct vty *vty);
75extern void install_element_ospf6_debug_abr (void);
76extern int ospf6_abr_config_write (struct vty *vty);
hasso049207c2004-08-04 20:02:13 +000077
Paul Jakma6ac29a52008-08-15 13:45:30 +010078extern void ospf6_abr_init (void);
hasso049207c2004-08-04 20:02:13 +000079
80#endif /*OSPF6_ABR_H*/