blob: 8dd55cc5be2dad0311af5e8df026e8afb9077fdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*
* BIRD -- Linux Netlink Interface
*
* (c) 1999 Martin Mares <mj@ucw.cz>
*
* Can be freely distributed and used under the terms of the GNU GPL.
*/
#ifndef _BIRD_NETLINK_KRT_H_
#define _BIRD_NETLINK_KRT_H_
extern struct protocol proto_unix_kernel;
struct krt_config {
struct proto_config c;
int persist; /* Keep routes when we exit */
int scan_time; /* How often we re-scan interfaces */
int route_scan_time; /* How often we re-scan routes */
int learn; /* Learn routes from other sources */
};
extern struct proto_config *cf_krt;
struct krt_proto {
struct proto p;
};
void scan_if_init(void);
#endif
|