bird/sysdep/unix/krt-set.Y
Martin Mares 013a9b91fe When shutting down, remove all routes (except for RTS_INHERIT and RTS_DEVICE
routes) from kernel routing tables unless the "persist" switch is set.
1999-02-13 20:46:03 +00:00

30 lines
421 B
Plaintext

/*
* BIRD -- UNIX Kernel Syncer Configuration
*
* (c) 1998--1999 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(PERSIST)
CF_GRAMMAR
CF_ADDTO(kern_proto, kern_proto krt_set_item ';')
krt_set_item:
PERSIST bool {
((struct krt_config *) this_proto)->setopt.persist = $2;
}
;
CF_CODE
CF_END