]> git.proxmox.com Git - mirror_frr.git/blob - eigrpd/eigrp_filter.h
topotests: RIP BFD integration topology test
[mirror_frr.git] / eigrpd / eigrp_filter.h
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * EIGRP Filter Functions.
4 * Copyright (C) 2013-2016
5 * Authors:
6 * Donnie Savage
7 * Jan Janovic
8 * Matej Perina
9 * Peter Orsag
10 * Peter Paluch
11 * Frantisek Gazo
12 * Tomas Hvorkovy
13 * Martin Kontsek
14 * Lukas Koribsky
15 *
16 */
17
18 #ifndef EIGRPD_EIGRP_FILTER_H_
19 #define EIGRPD_EIGRP_FILTER_H_
20
21 extern void eigrp_distribute_update(struct distribute_ctx *ctx,
22 struct distribute *dist);
23 extern void eigrp_distribute_update_interface(struct interface *ifp);
24 extern void eigrp_distribute_update_all(struct prefix_list *plist);
25 extern void eigrp_distribute_update_all_wrapper(struct access_list *alist);
26 extern void eigrp_distribute_timer_process(struct event *thread);
27 extern void eigrp_distribute_timer_interface(struct event *thread);
28
29 #endif /* EIGRPD_EIGRP_FILTER_H_ */