]> git.proxmox.com Git - mirror_frr.git/blame - eigrpd/eigrp_filter.h
zebra: Allow ns delete to happen after under/over flow checks
[mirror_frr.git] / eigrpd / eigrp_filter.h
CommitLineData
7f57883e
DS
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 *
896014f4
DL
28 * You should have received a copy of the GNU General Public License along
29 * with this program; see the file COPYING; if not, write to the Free Software
30 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
7f57883e
DS
31 */
32
33#ifndef EIGRPD_EIGRP_FILTER_H_
34#define EIGRPD_EIGRP_FILTER_H_
35
d62a17ae 36extern void eigrp_distribute_update(struct distribute *);
37extern void eigrp_distribute_update_interface(struct interface *);
38extern void eigrp_distribute_update_all(struct prefix_list *);
7f57883e 39extern void eigrp_distribute_update_all_wrapper(struct access_list *);
d62a17ae 40extern int eigrp_distribute_timer_process(struct thread *);
41extern int eigrp_distribute_timer_interface(struct thread *);
7f57883e
DS
42
43#endif /* EIGRPD_EIGRP_FILTER_H_ */