From 980ffedbb04bf3beedf147fc7dfed40cdbf968aa Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sun, 6 Dec 1998 17:40:42 +0000 Subject: Kernel syncer is now configurable. It will probably need some more options, but at least basic tuning is possible now. --- sysdep/linux/krt-scan.Y | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 sysdep/linux/krt-scan.Y (limited to 'sysdep/linux/krt-scan.Y') diff --git a/sysdep/linux/krt-scan.Y b/sysdep/linux/krt-scan.Y new file mode 100644 index 0000000..fcdcfe6 --- /dev/null +++ b/sysdep/linux/krt-scan.Y @@ -0,0 +1,33 @@ +/* + * BIRD -- Linux Kernel Syncer Configuration + * + * (c) 1998 Martin Mares + * + * 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 -- cgit v1.2.3