]> git.ipfire.org Git - thirdparty/bird.git/blob - sysdep/linux/krt-scan.h
Kernel syncer is now configurable. It will probably need some more
[thirdparty/bird.git] / sysdep / linux / krt-scan.h
1 /*
2 * BIRD -- Linux Kernel Route Syncer -- Scanning Parameters
3 *
4 * (c) 1998 Martin Mares <mj@ucw.cz>
5 *
6 * Can be freely distributed and used under the terms of the GNU GPL.
7 */
8
9 #ifndef _BIRD_KRT_SCAN_H_
10 #define _BIRD_KRT_SCAN_H_
11
12 struct krt_scan_params {
13 int recurrence; /* How often should we scan krt, 0=only on startup */
14 int learn; /* Should we learn routes from the kernel? */
15 struct timer *timer;
16 };
17
18 #endif