]> git.proxmox.com Git - mirror_frr.git/blame - eigrpd/eigrp_neighbor.h
Merge pull request #5793 from ton31337/fix/formatting_show_bgp_summary_failed
[mirror_frr.git] / eigrpd / eigrp_neighbor.h
CommitLineData
7f57883e
DS
1/*
2 * EIGRP Neighbor Handling.
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_NEIGHBOR_H
33#define _ZEBRA_EIGRP_NEIGHBOR_H
34
35/* Prototypes */
2ea6b572
DS
36extern struct eigrp_neighbor *eigrp_nbr_get(struct eigrp_interface *ei,
37 struct eigrp_header *,
38 struct ip *addr);
39extern struct eigrp_neighbor *eigrp_nbr_new(struct eigrp_interface *ei);
40extern void eigrp_nbr_delete(struct eigrp_neighbor *neigh);
7f57883e 41
2ea6b572 42extern int holddown_timer_expired(struct thread *thread);
7f57883e 43
2ea6b572
DS
44extern int eigrp_neighborship_check(struct eigrp_neighbor *neigh,
45 struct TLV_Parameter_Type *tlv);
46extern void eigrp_nbr_state_update(struct eigrp_neighbor *neigh);
47extern void eigrp_nbr_state_set(struct eigrp_neighbor *neigh, uint8_t state);
48extern uint8_t eigrp_nbr_state_get(struct eigrp_neighbor *neigh);
49extern int eigrp_nbr_count_get(struct eigrp *eigrp);
50extern const char *eigrp_nbr_state_str(struct eigrp_neighbor *neigh);
51extern struct eigrp_neighbor *
52eigrp_nbr_lookup_by_addr(struct eigrp_interface *ei, struct in_addr *addr);
53extern struct eigrp_neighbor *
54eigrp_nbr_lookup_by_addr_process(struct eigrp *eigrp, struct in_addr addr);
7f57883e
DS
55extern void eigrp_nbr_hard_restart(struct eigrp_neighbor *nbr, struct vty *vty);
56
255ab940 57extern int eigrp_nbr_split_horizon_check(struct eigrp_nexthop_entry *ne,
cd044247 58 struct eigrp_interface *ei);
7f57883e 59#endif /* _ZEBRA_EIGRP_NEIGHBOR_H */