From 33a368ad594822239bfbaa2eab50c76171e09b9e Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Mon, 8 May 2000 14:58:00 +0000 Subject: Implemented `show route count' which is `show route stats' with exception that it doesn't print the routes themselves. --- nest/config.Y | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'nest/config.Y') diff --git a/nest/config.Y b/nest/config.Y index 65142f76..e5249ea4 100644 --- a/nest/config.Y +++ b/nest/config.Y @@ -22,7 +22,7 @@ CF_DECLS CF_KEYWORDS(ROUTER, ID, PROTOCOL, PREFERENCE, DISABLED, DEBUG, ALL, OFF, DIRECT) CF_KEYWORDS(INTERFACE, IMPORT, EXPORT, FILTER, NONE, TABLE, STATES, ROUTES, FILTERS) CF_KEYWORDS(PASSWORD, FROM, PASSIVE, TO, ID, EVENTS, PACKETS, PROTOCOLS, INTERFACES) -CF_KEYWORDS(PRIMARY, STATS) +CF_KEYWORDS(PRIMARY, STATS, COUNT) CF_ENUM(T_ENUM_RTS, RTS_, DUMMY, STATIC, INHERIT, DEVICE, STATIC_DEVICE, REDIRECT, RIP, OSPF, OSPF_EXT, OSPF_IA, OSPF_BOUNDARY, BGP, PIPE) @@ -294,6 +294,10 @@ r_args: $$ = $1; $$->stats = 1; } + | r_args COUNT { + $$ = $1; + $$->stats = 2; + } ; import_or_proto: -- cgit v1.2.3