From f3792601dfe85c3017c984a6de5722d0e9da8a16 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sat, 4 Dec 1999 23:28:56 +0000 Subject: Don't forget to send an OK reply after dumping debug information. --- nest/config.Y | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'nest/config.Y') diff --git a/nest/config.Y b/nest/config.Y index d357f25..b02bf9e 100644 --- a/nest/config.Y +++ b/nest/config.Y @@ -253,19 +253,19 @@ r_args: CF_CLI_HELP(DEBUG, , [[Show debugging information]]) CF_CLI(DEBUG RESOURCES,,, [[Show all allocated resource]]) -{ rdump(&root_pool); } +{ rdump(&root_pool); cli_msg(0, ""); } CF_CLI(DEBUG SOCKETS,,, [[Show open sockets]]) -{ sk_dump_all(); } +{ sk_dump_all(); cli_msg(0, ""); } CF_CLI(DEBUG INTERFACES,,, [[Show interface information]]) -{ if_dump_all(); } +{ if_dump_all(); cli_msg(0, ""); } CF_CLI(DEBUG NEIGHBORS,,, [[Show neighbor cache]]) -{ neigh_dump_all(); } +{ neigh_dump_all(); cli_msg(0, ""); } CF_CLI(DEBUG ATTRIBUTES,,, [[Show attribute cache]]) -{ rta_dump_all(); } +{ rta_dump_all(); cli_msg(0, ""); } CF_CLI(DEBUG ROUTES,,, [[Show routing table]]) -{ rt_dump_all(); } +{ rt_dump_all(); cli_msg(0, ""); } CF_CLI(DEBUG PROTOCOLS,,, [[Show protocol information]]) -{ protos_dump_all(); } +{ protos_dump_all(); cli_msg(0, ""); } CF_CODE -- cgit v1.2.3