summaryrefslogtreecommitdiffstats
path: root/sysdep/unix/krt-iface.Y
blob: becb70cf803c5d5a9dff10a1611030d9c667bafd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 *	BIRD -- UNIX Interface 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_if_item ';')

krt_if_item:
   SCAN TIME expr {
      /* Scan time of 0 means scan on startup only */
      ((struct krt_proto *) this_proto)->ifopt.scan_time = $3;
   }
 ;

CF_CODE

CF_END