1998-12-07 01:40:42 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- Linux Kernel Syncer Configuration
|
|
|
|
*
|
|
|
|
* (c) 1998 Martin Mares <mj@ucw.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
CF_HDR
|
|
|
|
|
|
|
|
#include "lib/krt-scan.h"
|
|
|
|
|
|
|
|
CF_DECLS
|
|
|
|
|
1998-12-09 02:37:58 +08:00
|
|
|
CF_KEYWORDS(LEARN, ROUTE, SCAN, TIME)
|
1998-12-07 01:40:42 +08:00
|
|
|
|
|
|
|
CF_GRAMMAR
|
|
|
|
|
|
|
|
CF_ADDTO(kern_proto, kern_proto krt_scan_item ';')
|
|
|
|
|
|
|
|
krt_scan_item:
|
|
|
|
LEARN bool {
|
|
|
|
((struct krt_proto *) this_proto)->scanopt.learn = $2;
|
|
|
|
}
|
1998-12-09 02:37:58 +08:00
|
|
|
| ROUTE SCAN TIME expr {
|
1998-12-07 01:40:42 +08:00
|
|
|
/* Scan time of 0 means scan on startup only */
|
1998-12-09 02:37:58 +08:00
|
|
|
((struct krt_proto *) this_proto)->scanopt.scan_time = $4;
|
1998-12-07 01:40:42 +08:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
CF_CODE
|
|
|
|
|
|
|
|
CF_END
|