]> git.proxmox.com Git - mirror_frr.git/blob - eigrpd/eigrpd.h
Merge pull request #527 from LabNConsulting/working/master/patch-set/issue471+473
[mirror_frr.git] / eigrpd / eigrpd.h
1 /*
2 * EIGRP main header.
3 * Copyright (C) 2013-2014
4 * Authors:
5 * Donnie Savage
6 * Jan Janovic
7 * Matej Perina
8 * Peter Orsag
9 * Peter Paluch
10 *
11 * This file is part of GNU Zebra.
12 *
13 * GNU Zebra is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2, or (at your option) any
16 * later version.
17 *
18 * GNU Zebra is distributed in the hope that it will be useful, but
19 * WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 * General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with GNU Zebra; see the file COPYING. If not, write to the Free
25 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
26 * 02111-1307, USA.
27 */
28
29 #ifndef _ZEBRA_EIGRPD_H
30 #define _ZEBRA_EIGRPD_H
31
32 #include <zebra.h>
33
34 #include "filter.h"
35 #include "log.h"
36
37 /* Set EIGRP version is "classic" - wide metrics comes next */
38 #define EIGRP_MAJOR_VERSION 1
39 #define EIGRP_MINOR_VERSION 2
40
41 /* Extern variables. */
42 extern struct zclient *zclient;
43 extern struct thread_master *master;
44 extern struct eigrp_master *eigrp_om;
45
46 /* Prototypes */
47 extern void eigrp_master_init (void);
48 extern void eigrp_terminate (void);
49 extern void eigrp_finish_final (struct eigrp *);
50 extern void eigrp_finish (struct eigrp *);
51 extern struct eigrp *eigrp_get (const char *);
52 extern struct eigrp *eigrp_lookup (void);
53 extern void eigrp_router_id_update (struct eigrp *);
54
55 #endif /* _ZEBRA_EIGRPD_H */