mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-09 20:58:44 +00:00
Don't forget to send an OK reply after dumping debug information.
This commit is contained in:
parent
305a01f57b
commit
f3792601df
@ -253,19 +253,19 @@ r_args:
|
|||||||
|
|
||||||
CF_CLI_HELP(DEBUG, <subsystem>, [[Show debugging information]])
|
CF_CLI_HELP(DEBUG, <subsystem>, [[Show debugging information]])
|
||||||
CF_CLI(DEBUG RESOURCES,,, [[Show all allocated resource]])
|
CF_CLI(DEBUG RESOURCES,,, [[Show all allocated resource]])
|
||||||
{ rdump(&root_pool); }
|
{ rdump(&root_pool); cli_msg(0, ""); }
|
||||||
CF_CLI(DEBUG SOCKETS,,, [[Show open sockets]])
|
CF_CLI(DEBUG SOCKETS,,, [[Show open sockets]])
|
||||||
{ sk_dump_all(); }
|
{ sk_dump_all(); cli_msg(0, ""); }
|
||||||
CF_CLI(DEBUG INTERFACES,,, [[Show interface information]])
|
CF_CLI(DEBUG INTERFACES,,, [[Show interface information]])
|
||||||
{ if_dump_all(); }
|
{ if_dump_all(); cli_msg(0, ""); }
|
||||||
CF_CLI(DEBUG NEIGHBORS,,, [[Show neighbor cache]])
|
CF_CLI(DEBUG NEIGHBORS,,, [[Show neighbor cache]])
|
||||||
{ neigh_dump_all(); }
|
{ neigh_dump_all(); cli_msg(0, ""); }
|
||||||
CF_CLI(DEBUG ATTRIBUTES,,, [[Show attribute cache]])
|
CF_CLI(DEBUG ATTRIBUTES,,, [[Show attribute cache]])
|
||||||
{ rta_dump_all(); }
|
{ rta_dump_all(); cli_msg(0, ""); }
|
||||||
CF_CLI(DEBUG ROUTES,,, [[Show routing table]])
|
CF_CLI(DEBUG ROUTES,,, [[Show routing table]])
|
||||||
{ rt_dump_all(); }
|
{ rt_dump_all(); cli_msg(0, ""); }
|
||||||
CF_CLI(DEBUG PROTOCOLS,,, [[Show protocol information]])
|
CF_CLI(DEBUG PROTOCOLS,,, [[Show protocol information]])
|
||||||
{ protos_dump_all(); }
|
{ protos_dump_all(); cli_msg(0, ""); }
|
||||||
|
|
||||||
CF_CODE
|
CF_CODE
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user