]> git.proxmox.com Git - mirror_frr.git/blame - eigrpd/eigrp_topology.h
Merge branch 'frr/pull/546' ("bgpd: resolve issue with sending vpn labels")
[mirror_frr.git] / eigrpd / eigrp_topology.h
CommitLineData
7f57883e
DS
1/*
2 * EIGRP Topology Table.
3 * Copyright (C) 2013-2016
4 * Authors:
5 * Donnie Savage
6 * Jan Janovic
7 * Matej Perina
8 * Peter Orsag
9 * Peter Paluch
10 * Frantisek Gazo
11 * Tomas Hvorkovy
12 * Martin Kontsek
13 * Lukas Koribsky
14 *
15 * This file is part of GNU Zebra.
16 *
17 * GNU Zebra is free software; you can redistribute it and/or modify it
18 * under the terms of the GNU General Public License as published by the
19 * Free Software Foundation; either version 2, or (at your option) any
20 * later version.
21 *
22 * GNU Zebra is distributed in the hope that it will be useful, but
23 * WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25 * General Public License for more details.
26 *
896014f4
DL
27 * You should have received a copy of the GNU General Public License along
28 * with this program; see the file COPYING; if not, write to the Free Software
29 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
7f57883e
DS
30 */
31
32#ifndef _ZEBRA_EIGRP_TOPOLOGY_H
33#define _ZEBRA_EIGRP_TOPOLOGY_H
34
35
36/* EIGRP Topology table related functions. */
37extern struct list *eigrp_topology_new (void);
38extern void eigrp_topology_init (struct list*);
39extern struct eigrp_prefix_entry *eigrp_prefix_entry_new (void);
40extern struct eigrp_neighbor_entry *eigrp_neighbor_entry_new (void);
41extern void eigrp_topology_free (struct list *);
42extern void eigrp_topology_cleanup (struct list *);
43extern void eigrp_prefix_entry_add (struct list *, struct eigrp_prefix_entry *);
44extern void eigrp_neighbor_entry_add (struct eigrp_prefix_entry *, struct eigrp_neighbor_entry *);
45extern void eigrp_prefix_entry_delete (struct list *, struct eigrp_prefix_entry *);
46extern void eigrp_neighbor_entry_delete (struct eigrp_prefix_entry *, struct eigrp_neighbor_entry *);
47extern void eigrp_topology_delete_all (struct list *);
48extern unsigned int eigrp_topology_table_isempty (struct list *);
49extern struct eigrp_prefix_entry *eigrp_topology_table_lookup_ipv4 (struct list *, struct prefix_ipv4 *);
50extern struct list *eigrp_topology_get_successor (struct eigrp_prefix_entry *);
962251ae 51extern struct list *eigrp_topology_get_successor_max (struct eigrp_prefix_entry *pe, unsigned int maxpaths);
7f57883e
DS
52extern struct eigrp_neighbor_entry *eigrp_prefix_entry_lookup (struct list *, struct eigrp_neighbor *);
53extern struct list *eigrp_neighbor_prefixes_lookup(struct eigrp *, struct eigrp_neighbor *);
54extern void eigrp_topology_update_all_node_flags (struct eigrp *);
55extern void eigrp_topology_update_node_flags (struct eigrp_prefix_entry *);
56extern int eigrp_topology_update_distance ( struct eigrp_fsm_action_message *);
57extern void eigrp_update_routing_table(struct eigrp_prefix_entry *);
58extern void eigrp_topology_neighbor_down(struct eigrp *, struct eigrp_neighbor *);
59extern void eigrp_update_topology_table_prefix(struct list *, struct eigrp_prefix_entry * );
f6709c16 60
7f57883e 61#endif