]> git.proxmox.com Git - mirror_frr.git/blob - eigrpd/eigrp_topology.h
Merge pull request #7436 from ckishimo/cosmetic
[mirror_frr.git] / eigrpd / eigrp_topology.h
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 *
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
30 */
31
32 #ifndef _ZEBRA_EIGRP_TOPOLOGY_H
33 #define _ZEBRA_EIGRP_TOPOLOGY_H
34
35 /* EIGRP Topology table related functions. */
36 extern struct route_table *eigrp_topology_new(void);
37 extern void eigrp_topology_init(struct route_table *table);
38 extern struct eigrp_prefix_descriptor *eigrp_prefix_descriptor_new(void);
39 extern struct eigrp_route_descriptor *eigrp_route_descriptor_new(void);
40 extern void eigrp_topology_free(struct eigrp *eigrp, struct route_table *table);
41 extern void eigrp_prefix_descriptor_add(struct route_table *table,
42 struct eigrp_prefix_descriptor *pe);
43 extern void eigrp_route_descriptor_add(struct eigrp *eigrp,
44 struct eigrp_prefix_descriptor *pe,
45 struct eigrp_route_descriptor *ne);
46 extern void eigrp_prefix_descriptor_delete(struct eigrp *eigrp,
47 struct route_table *table,
48 struct eigrp_prefix_descriptor *pe);
49 extern void eigrp_route_descriptor_delete(struct eigrp *eigrp,
50 struct eigrp_prefix_descriptor *pe,
51 struct eigrp_route_descriptor *ne);
52 extern void eigrp_topology_delete_all(struct eigrp *eigrp,
53 struct route_table *table);
54 extern struct eigrp_prefix_descriptor *
55 eigrp_topology_table_lookup_ipv4(struct route_table *table, struct prefix *p);
56 extern struct list *
57 eigrp_topology_get_successor(struct eigrp_prefix_descriptor *pe);
58 extern struct list *
59 eigrp_topology_get_successor_max(struct eigrp_prefix_descriptor *pe,
60 unsigned int maxpaths);
61 extern struct eigrp_route_descriptor *
62 eigrp_route_descriptor_lookup(struct list *entries,
63 struct eigrp_neighbor *neigh);
64 extern struct list *eigrp_neighbor_prefixes_lookup(struct eigrp *eigrp,
65 struct eigrp_neighbor *n);
66 extern void eigrp_topology_update_all_node_flags(struct eigrp *eigrp);
67 extern void
68 eigrp_topology_update_node_flags(struct eigrp *eigrp,
69 struct eigrp_prefix_descriptor *pe);
70 extern enum metric_change
71 eigrp_topology_update_distance(struct eigrp_fsm_action_message *msg);
72 extern void eigrp_update_routing_table(struct eigrp *eigrp,
73 struct eigrp_prefix_descriptor *pe);
74 extern void eigrp_topology_neighbor_down(struct eigrp *eigrp,
75 struct eigrp_neighbor *neigh);
76 extern void
77 eigrp_update_topology_table_prefix(struct eigrp *eigrp,
78 struct route_table *table,
79 struct eigrp_prefix_descriptor *pe);
80
81 #endif