diff options
author | Martin Mares <mj@ucw.cz> | 1998-12-06 18:21:23 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1998-12-06 18:21:23 +0000 |
commit | a1bf6440b5c27f7fb829eb25f6ac1c2629eb72eb (patch) | |
tree | 754d594eadd2439383bc8bbcb97d91265a090651 /proto/static/config.Y | |
parent | 980ffedbb04bf3beedf147fc7dfed40cdbf968aa (diff) |
Added skeleton of static route protocol.
Diffstat (limited to 'proto/static/config.Y')
-rw-r--r-- | proto/static/config.Y | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/proto/static/config.Y b/proto/static/config.Y new file mode 100644 index 00000000..a9eaa872 --- /dev/null +++ b/proto/static/config.Y @@ -0,0 +1,34 @@ +/* + * BIRD -- Static Protocol Configuration + * + * (c) 1998 Martin Mares <mj@ucw.cz> + * + * Can be freely distributed and used under the terms of the GNU GPL. + */ + +CF_HDR + +#include "proto/static/static.h" + +CF_DECLS + +CF_KEYWORDS(STATIC) + +CF_GRAMMAR + +CF_ADDTO(proto, static_proto '}') + +static_proto_start: proto_start STATIC { + this_proto = proto_new(&proto_static, sizeof(struct static_proto)); + static_init_instance((struct static_proto *) this_proto); + } + ; + +static_proto: + static_proto_start proto_name '{' + | static_proto proto_item ';' + ; + +CF_CODE + +CF_END |