diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2011-03-13 11:33:50 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2011-03-13 11:33:50 +0100 |
commit | 93e868c730dc0b1825b2a685e0b066c051b1cb07 (patch) | |
tree | 732a24861785cbefac966c365a762628bac9c0ac /conf | |
parent | 9d67ffb0b4cdfbbf88779ce2b44ba810d1ba85d3 (diff) | |
download | bird-93e868c730dc0b1825b2a685e0b066c051b1cb07.tar bird-93e868c730dc0b1825b2a685e0b066c051b1cb07.zip |
Implements Router Advertisement protocol.
Diffstat (limited to 'conf')
-rw-r--r-- | conf/cf-lex.l | 2 | ||||
-rw-r--r-- | conf/confbase.Y | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/conf/cf-lex.l b/conf/cf-lex.l index a99acdc..c6e9a0e 100644 --- a/conf/cf-lex.l +++ b/conf/cf-lex.l @@ -31,6 +31,8 @@ #include <stdlib.h> #include <stdarg.h> +#define PARSER 1 + #include "nest/bird.h" #include "nest/route.h" #include "nest/protocol.h" diff --git a/conf/confbase.Y b/conf/confbase.Y index 534b332..ce844ba 100644 --- a/conf/confbase.Y +++ b/conf/confbase.Y @@ -8,6 +8,8 @@ CF_HDR +#define PARSER 1 + #include "nest/bird.h" #include "conf/conf.h" #include "lib/resource.h" |