]> git.proxmox.com Git - mirror_frr.git/blame - ospf6d/ospf6_lsdb.h
Merge pull request #5653 from slankdev/slankdev-bgpd-support-prefix-sid-srv6-l3vpn
[mirror_frr.git] / ospf6d / ospf6_lsdb.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 OSPF6_LSDB_H
22#define OSPF6_LSDB_H
23
24#include "prefix.h"
25#include "table.h"
c3c0ac83 26#include "ospf6_route.h"
718e3744 27
d62a17ae 28struct ospf6_lsdb {
29 void *data; /* data structure that holds this lsdb */
30 struct route_table *table;
d7c0a89a 31 uint32_t count;
d62a17ae 32 void (*hook_add)(struct ospf6_lsa *);
33 void (*hook_remove)(struct ospf6_lsa *);
718e3744 34};
35
718e3744 36/* Function Prototypes */
d62a17ae 37extern struct ospf6_lsdb *ospf6_lsdb_create(void *data);
38extern void ospf6_lsdb_delete(struct ospf6_lsdb *lsdb);
718e3744 39
d7c0a89a
QY
40extern struct ospf6_lsa *ospf6_lsdb_lookup(uint16_t type, uint32_t id,
41 uint32_t adv_router,
d62a17ae 42 struct ospf6_lsdb *lsdb);
d7c0a89a
QY
43extern struct ospf6_lsa *ospf6_lsdb_lookup_next(uint16_t type, uint32_t id,
44 uint32_t adv_router,
d62a17ae 45 struct ospf6_lsdb *lsdb);
718e3744 46
d62a17ae 47extern void ospf6_lsdb_add(struct ospf6_lsa *lsa, struct ospf6_lsdb *lsdb);
48extern void ospf6_lsdb_remove(struct ospf6_lsa *lsa, struct ospf6_lsdb *lsdb);
718e3744 49
d62a17ae 50extern const struct route_node *ospf6_lsdb_head(struct ospf6_lsdb *lsdb,
51 int argmode, uint16_t type,
52 uint32_t adv_router,
53 struct ospf6_lsa **lsa);
54extern struct ospf6_lsa *ospf6_lsdb_next(const struct route_node *iterend,
55 struct ospf6_lsa *lsa);
718e3744 56
d62a17ae 57#define ALL_LSDB_TYPED_ADVRTR(lsdb, type, adv_router, lsa) \
58 const struct route_node *iterend = \
59 ospf6_lsdb_head(lsdb, 2, type, adv_router, &lsa); \
60 lsa; \
954306f7 61 lsa = ospf6_lsdb_next(iterend, lsa)
508e53e2 62
d62a17ae 63#define ALL_LSDB_TYPED(lsdb, type, lsa) \
64 const struct route_node *iterend = \
65 ospf6_lsdb_head(lsdb, 1, type, 0, &lsa); \
66 lsa; \
954306f7
DL
67 lsa = ospf6_lsdb_next(iterend, lsa)
68
d62a17ae 69#define ALL_LSDB(lsdb, lsa) \
70 const struct route_node *iterend = \
71 ospf6_lsdb_head(lsdb, 0, 0, 0, &lsa); \
72 lsa; \
954306f7 73 lsa = ospf6_lsdb_next(iterend, lsa)
718e3744 74
d62a17ae 75extern void ospf6_lsdb_remove_all(struct ospf6_lsdb *lsdb);
76extern void ospf6_lsdb_lsa_unlock(struct ospf6_lsa *lsa);
718e3744 77
f58c5fbd 78enum ospf_lsdb_show_level {
d62a17ae 79 OSPF6_LSDB_SHOW_LEVEL_NORMAL = 0,
80 OSPF6_LSDB_SHOW_LEVEL_DETAIL,
81 OSPF6_LSDB_SHOW_LEVEL_INTERNAL,
82 OSPF6_LSDB_SHOW_LEVEL_DUMP,
f58c5fbd 83};
049207c3 84
d62a17ae 85extern void ospf6_lsdb_show(struct vty *vty, enum ospf_lsdb_show_level level,
d7c0a89a
QY
86 uint16_t *type, uint32_t *id, uint32_t *adv_router,
87 struct ospf6_lsdb *lsdb);
718e3744 88
d7c0a89a
QY
89extern uint32_t ospf6_new_ls_id(uint16_t type, uint32_t adv_router,
90 struct ospf6_lsdb *lsdb);
91extern uint32_t ospf6_new_ls_seqnum(uint16_t type, uint32_t id,
92 uint32_t adv_router,
93 struct ospf6_lsdb *lsdb);
d62a17ae 94extern int ospf6_lsdb_maxage_remover(struct ospf6_lsdb *lsdb);
718e3744 95
96#endif /* OSPF6_LSDB_H */