]> git.proxmox.com Git - mirror_frr.git/blame - ospf6d/ospf6_area.h
Merge pull request #1843 from chiragshah6/ospf_vrf_dev
[mirror_frr.git] / ospf6d / ospf6_area.h
CommitLineData
718e3744 1/*
508e53e2 2 * Copyright (C) 2003 Yasuhiro Ohara
718e3744 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 *
896014f4
DL
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
718e3744 19 */
20
21#ifndef OSPF_AREA_H
22#define OSPF_AREA_H
23
718e3744 24#include "ospf6_top.h"
25
d62a17ae 26struct ospf6_area {
27 /* Reference to Top data structure */
28 struct ospf6 *ospf6;
718e3744 29
d62a17ae 30 /* Area-ID */
31 u_int32_t area_id;
718e3744 32
79c3f4f4
QY
33#define OSPF6_AREA_FMT_DOTTEDQUAD 1
34#define OSPF6_AREA_FMT_DECIMAL 2
d62a17ae 35 /* Area-ID string */
36 char name[16];
718e3744 37
d62a17ae 38 /* flag */
39 u_char flag;
718e3744 40
d62a17ae 41 /* OSPF Option */
42 u_char options[3];
718e3744 43
d62a17ae 44 /* Summary routes to be originated (includes Configured Address Ranges)
45 */
46 struct ospf6_route_table *range_table;
47 struct ospf6_route_table *summary_prefix;
48 struct ospf6_route_table *summary_router;
049207c3 49
d62a17ae 50 /* Area type */
51 int no_summary;
ca1f4309 52
d62a17ae 53 /* OSPF interface list */
54 struct list *if_list;
718e3744 55
d62a17ae 56 struct ospf6_lsdb *lsdb;
57 struct ospf6_lsdb *lsdb_self;
da086a3b 58 struct ospf6_lsdb *temp_router_lsa_lsdb;
6452df09 59
d62a17ae 60 struct ospf6_route_table *spf_table;
61 struct ospf6_route_table *route_table;
718e3744 62
d62a17ae 63 u_int32_t spf_calculation; /* SPF calculation count */
718e3744 64
d62a17ae 65 struct thread *thread_router_lsa;
66 struct thread *thread_intra_prefix_lsa;
67 u_int32_t router_lsa_size_limit;
34956b31 68
d62a17ae 69 /* Area announce list */
70 struct {
71 char *name;
72 struct access_list *list;
73 } _export;
dea04441
PJ
74#define EXPORT_NAME(A) (A)->_export.name
75#define EXPORT_LIST(A) (A)->_export.list
34956b31 76
d62a17ae 77 /* Area acceptance list */
78 struct {
79 char *name;
80 struct access_list *list;
81 } import;
34956b31 82#define IMPORT_NAME(A) (A)->import.name
83#define IMPORT_LIST(A) (A)->import.list
84
d62a17ae 85 /* Type 3 LSA Area prefix-list */
86 struct {
87 char *name;
88 struct prefix_list *list;
89 } plist_in;
34956b31 90#define PREFIX_NAME_IN(A) (A)->plist_in.name
91#define PREFIX_LIST_IN(A) (A)->plist_in.list
92
d62a17ae 93 struct {
94 char *name;
95 struct prefix_list *list;
96 } plist_out;
34956b31 97#define PREFIX_NAME_OUT(A) (A)->plist_out.name
98#define PREFIX_LIST_OUT(A) (A)->plist_out.list
99
d62a17ae 100 /* Time stamps. */
101 struct timeval ts_spf; /* SPF calculation time stamp. */
d6927cf3
CS
102
103 uint32_t full_nbrs; /* Fully adjacent neighbors. */
718e3744 104};
105
6452df09 106#define OSPF6_AREA_ENABLE 0x01
107#define OSPF6_AREA_ACTIVE 0x02
108#define OSPF6_AREA_TRANSIT 0x04 /* TransitCapability */
109#define OSPF6_AREA_STUB 0x08
110
6452df09 111#define IS_AREA_ENABLED(oa) (CHECK_FLAG ((oa)->flag, OSPF6_AREA_ENABLE))
112#define IS_AREA_ACTIVE(oa) (CHECK_FLAG ((oa)->flag, OSPF6_AREA_ACTIVE))
113#define IS_AREA_TRANSIT(oa) (CHECK_FLAG ((oa)->flag, OSPF6_AREA_TRANSIT))
114#define IS_AREA_STUB(oa) (CHECK_FLAG ((oa)->flag, OSPF6_AREA_STUB))
718e3744 115
116/* prototypes */
d62a17ae 117extern int ospf6_area_cmp(void *va, void *vb);
6452df09 118
d62a17ae 119extern struct ospf6_area *ospf6_area_create(u_int32_t, struct ospf6 *, int);
120extern void ospf6_area_delete(struct ospf6_area *);
121extern struct ospf6_area *ospf6_area_lookup(u_int32_t, struct ospf6 *);
508e53e2 122
d62a17ae 123extern void ospf6_area_enable(struct ospf6_area *);
124extern void ospf6_area_disable(struct ospf6_area *);
718e3744 125
d62a17ae 126extern void ospf6_area_show(struct vty *, struct ospf6_area *);
6452df09 127
427f8e61 128extern void ospf6_area_plist_update(struct prefix_list *plist, int add);
d62a17ae 129extern void ospf6_area_config_write(struct vty *vty);
130extern void ospf6_area_init(void);
718e3744 131
132#endif /* OSPF_AREA_H */