]> git.proxmox.com Git - mirror_frr.git/blame - ospf6d/ospf6_flood.h
Merge pull request #9546 from proelbtn/add-support-for-perfix-sid-type-5
[mirror_frr.git] / ospf6d / ospf6_flood.h
CommitLineData
48454375 1/*
2 * Copyright (C) 2003 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 *
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
48454375 19 */
20
21#ifndef OSPF6_FLOOD_H
22#define OSPF6_FLOOD_H
23
1e05838a 24/* Debug option */
25extern unsigned char conf_debug_ospf6_flooding;
d62a17ae 26#define OSPF6_DEBUG_FLOODING_ON() (conf_debug_ospf6_flooding = 1)
27#define OSPF6_DEBUG_FLOODING_OFF() (conf_debug_ospf6_flooding = 0)
28#define IS_OSPF6_DEBUG_FLOODING (conf_debug_ospf6_flooding)
1e05838a 29
48454375 30/* Function Prototypes */
d62a17ae 31extern struct ospf6_lsdb *ospf6_get_scoped_lsdb(struct ospf6_lsa *lsa);
32extern struct ospf6_lsdb *ospf6_get_scoped_lsdb_self(struct ospf6_lsa *lsa);
48454375 33
6452df09 34/* origination & purging */
71165098 35extern void ospf6_lsa_originate(struct ospf6 *ospf6, struct ospf6_lsa *lsa);
d62a17ae 36extern void ospf6_lsa_originate_process(struct ospf6_lsa *lsa,
37 struct ospf6 *process);
38extern void ospf6_lsa_originate_area(struct ospf6_lsa *lsa,
39 struct ospf6_area *oa);
40extern void ospf6_lsa_originate_interface(struct ospf6_lsa *lsa,
41 struct ospf6_interface *oi);
4dc43886
MR
42void ospf6_remove_id_from_external_id_table(struct ospf6 *ospf6,
43 uint32_t id);
44void ospf6_external_lsa_purge(struct ospf6 *ospf6, struct ospf6_lsa *lsa);
d62a17ae 45extern void ospf6_lsa_purge(struct ospf6_lsa *lsa);
690df177
CS
46
47extern void ospf6_lsa_purge_multi_ls_id(struct ospf6_area *oa,
48 struct ospf6_lsa *lsa);
6452df09 49
50/* access method to retrans_count */
d62a17ae 51extern void ospf6_increment_retrans_count(struct ospf6_lsa *lsa);
52extern void ospf6_decrement_retrans_count(struct ospf6_lsa *lsa);
6452df09 53
54/* flooding & clear flooding */
d62a17ae 55extern void ospf6_flood_clear(struct ospf6_lsa *lsa);
56extern void ospf6_flood(struct ospf6_neighbor *from, struct ospf6_lsa *lsa);
57extern void ospf6_flood_area(struct ospf6_neighbor *from, struct ospf6_lsa *lsa,
58 struct ospf6_area *oa);
6452df09 59
60/* receive & install */
d62a17ae 61extern void ospf6_receive_lsa(struct ospf6_neighbor *from,
62 struct ospf6_lsa_header *header);
63extern void ospf6_install_lsa(struct ospf6_lsa *lsa);
48454375 64
d62a17ae 65extern int config_write_ospf6_debug_flood(struct vty *vty);
66extern void install_element_ospf6_debug_flood(void);
76249532
CS
67extern void ospf6_flood_interface(struct ospf6_neighbor *from,
68 struct ospf6_lsa *lsa,
69 struct ospf6_interface *oi);
70extern int ospf6_lsupdate_send_neighbor_now(struct ospf6_neighbor *on,
71 struct ospf6_lsa *lsa);
1e05838a 72
ad500b22
K
73extern void ospf6_flood_clear_area(struct ospf6_lsa *lsa,
74 struct ospf6_area *oa);
48454375 75#endif /* OSPF6_FLOOD_H */