blob: ce3c19a03054b38674fe2585ba6eaf06c90a59d0 [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
25/* Debug option */
26extern unsigned char conf_debug_ospf6_abr;
27#define OSPF6_DEBUG_ABR_ON() \
28 (conf_debug_ospf6_abr = 1)
29#define OSPF6_DEBUG_ABR_OFF() \
30 (conf_debug_ospf6_abr = 0)
31#define IS_OSPF6_DEBUG_ABR \
32 (conf_debug_ospf6_abr)
33
34/* Inter-Area-Prefix-LSA */
35struct ospf6_inter_prefix_lsa
36{
37 u_int32_t metric;
38 struct ospf6_prefix prefix;
39};
40
41/* Inter-Area-Router-LSA */
42struct ospf6_inter_router_lsa
43{
44 u_char mbz;
45 u_char options[3];
46 u_int32_t metric;
47 u_int32_t router_id;
48};
49
50#define OSPF6_ABR_SUMMARY_METRIC(E) (ntohl ((E)->metric & htonl (0x00ffffff)))
51#define OSPF6_ABR_SUMMARY_METRIC_SET(E,C) \
52 { (E)->metric &= htonl (0x00000000); \
53 (E)->metric |= htonl (0x00ffffff) & htonl (C); }
54
hasso6452df02004-08-15 05:52:07 +000055int ospf6_is_router_abr (struct ospf6 *o);
56
hasso3b687352004-08-19 06:56:53 +000057void ospf6_abr_enable_area (struct ospf6_area *oa);
58void ospf6_abr_disable_area (struct ospf6_area *oa);
59
hasso6452df02004-08-15 05:52:07 +000060void ospf6_abr_originate_summary_to_area (struct ospf6_route *route,
61 struct ospf6_area *area);
62void ospf6_abr_originate_summary (struct ospf6_route *route);
hasso049207c2004-08-04 20:02:13 +000063void ospf6_abr_examin_summary (struct ospf6_lsa *lsa, struct ospf6_area *oa);
hassoccb59b12004-08-25 09:10:37 +000064void ospf6_abr_examin_brouter (u_int32_t router_id);
hasso049207c2004-08-04 20:02:13 +000065
66int config_write_ospf6_debug_abr (struct vty *vty);
67void install_element_ospf6_debug_abr ();
68int ospf6_abr_config_write (struct vty *vty);
69
70void ospf6_abr_init ();
71
72#endif /*OSPF6_ABR_H*/
73
74