blob: f639f63debc6784511b64aa74ae02d7399955b50 [file] [log] [blame]
hasso48454372004-05-18 19:14:52 +00001/*
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 *
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_FLOOD_H
23#define OSPF6_FLOOD_H
24
25/* Function Prototypes */
26void *ospf6_get_lsa_scope (u_int16_t type, struct ospf6_neighbor *from);
27struct ospf6_lsdb *ospf6_get_scoped_lsdb (u_int16_t type, void *scope);
28
hasso3b4cd3a2004-05-18 19:28:32 +000029void ospf6_decrement_onretrans (struct ospf6_lsa *lsa);
hasso48454372004-05-18 19:14:52 +000030void ospf6_flood_clear (struct ospf6_lsa *lsa);
31void ospf6_flood_lsa (struct ospf6_lsa *lsa, struct ospf6_neighbor *from);
32void ospf6_install_lsa (struct ospf6_lsa *lsa, struct ospf6_lsdb *lsdb);
33void ospf6_receive_lsa (struct ospf6_lsa_header *header,
34 struct ospf6_neighbor *from);
35
36#endif /* OSPF6_FLOOD_H */
37
38