980ffedbb0
options, but at least basic tuning is possible now.
33 lines
569 B
Text
33 lines
569 B
Text
/*
|
|
* 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
|
|
|
|
CF_KEYWORDS(LEARN, SCAN, TIME)
|
|
|
|
CF_GRAMMAR
|
|
|
|
CF_ADDTO(kern_proto, kern_proto krt_scan_item ';')
|
|
|
|
krt_scan_item:
|
|
LEARN bool {
|
|
((struct krt_proto *) this_proto)->scanopt.learn = $2;
|
|
}
|
|
| SCAN TIME expr {
|
|
/* Scan time of 0 means scan on startup only */
|
|
((struct krt_proto *) this_proto)->scanopt.recurrence = $3;
|
|
}
|
|
;
|
|
|
|
CF_CODE
|
|
|
|
CF_END
|