summaryrefslogtreecommitdiffstats
path: root/sysdep/linux/krt-scan.Y
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1998-12-06 18:40:42 +0100
committerMartin Mares <mj@ucw.cz>1998-12-06 18:40:42 +0100
commit980ffedbb04bf3beedf147fc7dfed40cdbf968aa (patch)
tree075cadebb6c03fe359f77f51dc11d5e06d66f95f /sysdep/linux/krt-scan.Y
parent0846203e896d8ab009217968e391b5e13ea3c4c6 (diff)
downloadbird-980ffedbb04bf3beedf147fc7dfed40cdbf968aa.tar
bird-980ffedbb04bf3beedf147fc7dfed40cdbf968aa.zip
Kernel syncer is now configurable. It will probably need some more
options, but at least basic tuning is possible now.
Diffstat (limited to 'sysdep/linux/krt-scan.Y')
-rw-r--r--sysdep/linux/krt-scan.Y33
1 files changed, 33 insertions, 0 deletions
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 <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