summaryrefslogtreecommitdiffstats
path: root/nest/config.Y
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2009-05-21 09:26:59 +0200
committerOndrej Zajicek <santiago@crfreenet.org>2009-05-21 09:26:59 +0200
commit6c84554b671fce473fe333ab3d8b548a0768882b (patch)
treefff55c05f21325230e5470825bd03d48742875c1 /nest/config.Y
parentf434d19174cb2d3054a00248ca609aa87bf8c263 (diff)
parent4d176e14509c71823a539b3c8b6103e254296d4f (diff)
downloadbird-6c84554b671fce473fe333ab3d8b548a0768882b.tar
bird-6c84554b671fce473fe333ab3d8b548a0768882b.zip
Merge branch 'master' into dev
Diffstat (limited to 'nest/config.Y')
-rw-r--r--nest/config.Y16
1 files changed, 12 insertions, 4 deletions
diff --git a/nest/config.Y b/nest/config.Y
index 1d2f015..efff131 100644
--- a/nest/config.Y
+++ b/nest/config.Y
@@ -56,7 +56,7 @@ CF_ENUM(T_ENUM_RTD, RTD_, ROUTER, DEVICE, BLACKHOLE, UNREACHABLE, PROHIBIT)
%type <r> rtable
%type <s> optsym
%type <ra> r_args
-%type <i> echo_mask echo_size debug_mask debug_list debug_flag import_or_proto
+%type <i> echo_mask echo_size debug_mask debug_list debug_flag import_or_preimport
%type <t> proto_patt
CF_GRAMMAR
@@ -298,7 +298,7 @@ CF_CLI(SHOW INTERFACES,,, [[Show network interfaces]])
CF_CLI(SHOW INTERFACES SUMMARY,,, [[Show summary of network interfaces]])
{ if_show_summary(); } ;
-CF_CLI(SHOW ROUTE, r_args, [[[<prefix>|for <prefix>|for <ip>] [table <t>] [filter <f>|where <cond>] [all] [primary] [(import|protocol) <p>] [stats|count]]], [[Show routing table]])
+CF_CLI(SHOW ROUTE, r_args, [[[<prefix>|for <prefix>|for <ip>] [table <t>] [filter <f>|where <cond>] [all] [primary] [(import|preimport) <p>] [protocol <p>] [stats|count]]], [[Show routing table]])
{ rt_show($3); } ;
r_args:
@@ -344,7 +344,7 @@ r_args:
$$ = $1;
$$->primary_only = 1;
}
- | r_args import_or_proto SYM {
+ | r_args import_or_preimport SYM {
struct proto_config *c = (struct proto_config *) $3->def;
$$ = $1;
if ($$->import_mode) cf_error("Protocol specified twice");
@@ -354,6 +354,14 @@ r_args:
$$->import_protocol = c->proto;
$$->running_on_config = c->proto->cf->global;
}
+ | r_args PROTOCOL SYM {
+ struct proto_config *c = (struct proto_config *) $3->def;
+ $$ = $1;
+ if ($$->show_protocol) cf_error("Protocol specified twice");
+ if ($3->class != SYM_PROTO || !c->proto) cf_error("%s is not a protocol", $3->name);
+ $$->show_protocol = c->proto;
+ $$->running_on_config = c->proto->cf->global;
+ }
| r_args STATS {
$$ = $1;
$$->stats = 1;
@@ -364,7 +372,7 @@ r_args:
}
;
-import_or_proto:
+import_or_preimport:
PREIMPORT { $$ = 1; }
| IMPORT { $$ = 2; }
;