diff options
author | Martin Mares <mj@ucw.cz> | 1999-12-05 00:28:56 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-12-05 00:28:56 +0100 |
commit | f3792601dfe85c3017c984a6de5722d0e9da8a16 (patch) | |
tree | ef75da5a287c0ed872d2e9c314b91ff269eff345 | |
parent | 305a01f57bd97906000c36bb154d63bc90012ef7 (diff) | |
download | bird-f3792601dfe85c3017c984a6de5722d0e9da8a16.tar bird-f3792601dfe85c3017c984a6de5722d0e9da8a16.zip |
Don't forget to send an OK reply after dumping debug information.
-rw-r--r-- | nest/config.Y | 14 |
1 files changed, 7 insertions, 7 deletions
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, <subsystem>, [[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 |