File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / bird / sysdep / bsd / krt-sock.Y
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Aug 22 12:33:54 2017 UTC (6 years, 10 months ago) by misho
Branches: bird, MAIN
CVS tags: v1_6_8p3, v1_6_3p0, v1_6_3, HEAD
bird 1.6.3

/*
 *	BIRD -- BSD Kernel Syncer Configuration
 *
 *	(c) 1999--2000 Martin Mares <mj@ucw.cz>
 *
 *	Can be freely distributed and used under the terms of the GNU GPL.
 */

CF_HDR

CF_DECLS

CF_KEYWORDS(KERNEL, TABLE)

CF_GRAMMAR

CF_ADDTO(kern_proto, kern_proto kern_sys_item ';')

kern_sys_item:
   KERNEL TABLE expr {
	if ($3 && (krt_max_tables == 1))
	  cf_error("Multiple kernel routing tables not supported");
 	if ($3 < 0 || $3 >= krt_max_tables)
	  cf_error("Kernel table id must be in range 0-%d", krt_max_tables - 1);

	THIS_KRT->sys.table_id = $3;
   }
 ;

CF_CODE

CF_END

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>