]> git.proxmox.com Git - mirror_frr.git/blob - eigrpd/eigrp_filter.h
Merge pull request #476 from qlyoung/abort-select-fd
[mirror_frr.git] / eigrpd / eigrp_filter.h
1 /*
2 * EIGRP Filter Functions.
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 *
16 * This file is part of GNU Zebra.
17 *
18 * GNU Zebra is free software; you can redistribute it and/or modify it
19 * under the terms of the GNU General Public License as published by the
20 * Free Software Foundation; either version 2, or (at your option) any
21 * later version.
22 *
23 * GNU Zebra is distributed in the hope that it will be useful, but
24 * WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
26 * General Public License for more details.
27 *
28 * You should have received a copy of the GNU General Public License
29 * along with GNU Zebra; see the file COPYING. If not, write to the Free
30 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
31 * 02111-1307, USA.
32 */
33
34 #ifndef EIGRPD_EIGRP_FILTER_H_
35 #define EIGRPD_EIGRP_FILTER_H_
36
37 extern void eigrp_distribute_update (struct distribute *);
38 extern void eigrp_distribute_update_interface (struct interface *);
39 extern void eigrp_distribute_update_all (struct prefix_list *);
40 extern void eigrp_distribute_update_all_wrapper(struct access_list *);
41 extern int eigrp_distribute_timer_process (struct thread *);
42 extern int eigrp_distribute_timer_interface (struct thread *);
43
44 #endif /* EIGRPD_EIGRP_FILTER_H_ */