7de45ba4a0
The changes are just too extensive for lazy me to list them there, but see the comment at the top of sysdep/unix/krt.c. The code got a bit more ifdeffy than I'd like, though. Also fixed a bunch of FIXME's and added a couple of others. :)
30 lines
488 B
Text
30 lines
488 B
Text
/*
|
|
* BIRD -- Linux Netlink Configuration
|
|
*
|
|
* (c) 1999 Martin Mares <mj@ucw.cz>
|
|
*
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
*/
|
|
|
|
CF_HDR
|
|
|
|
CF_DECLS
|
|
|
|
CF_KEYWORDS(ASYNC, KERNEL, TABLE)
|
|
|
|
CF_GRAMMAR
|
|
|
|
CF_ADDTO(kern_proto, kern_proto nl_item ';')
|
|
|
|
nl_item:
|
|
ASYNC bool { THIS_KRT->scan.async = $2; }
|
|
| KERNEL TABLE expr {
|
|
if ($3 <= 0 || $3 >= 255)
|
|
cf_error("Kernel routing table number out of range");
|
|
THIS_KRT->scan.table_id = $3;
|
|
}
|
|
;
|
|
|
|
CF_CODE
|
|
|
|
CF_END
|