summaryrefslogtreecommitdiffstats
path: root/sysdep/linux/krt-scan.Y
diff options
context:
space:
mode:
Diffstat (limited to 'sysdep/linux/krt-scan.Y')
-rw-r--r--sysdep/linux/krt-scan.Y33
1 files changed, 0 insertions, 33 deletions
diff --git a/sysdep/linux/krt-scan.Y b/sysdep/linux/krt-scan.Y
deleted file mode 100644
index 5833989..0000000
--- a/sysdep/linux/krt-scan.Y
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * 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, ROUTE, SCAN, TIME)
-
-CF_GRAMMAR
-
-CF_ADDTO(kern_proto, kern_proto krt_scan_item ';')
-
-krt_scan_item:
- LEARN bool {
- ((struct krt_config *) this_proto)->scanopt.learn = $2;
- }
- | ROUTE SCAN TIME expr {
- /* Scan time of 0 means scan on startup only */
- ((struct krt_config *) this_proto)->scanopt.scan_time = $4;
- }
- ;
-
-CF_CODE
-
-CF_END