+static struct ast_cli_entry cli_commands[] = {
+ AST_CLI_DEFINE(ast_sip_cli_traverse_objects, "List PJSIP Channels",
+ .command = "pjsip list channels",
+ .usage = "Usage: pjsip list channels\n"
+ " List the active PJSIP channels\n"),
+ AST_CLI_DEFINE(ast_sip_cli_traverse_objects, "Show PJSIP Channels",
+ .command = "pjsip show channels",
+ .usage = "Usage: pjsip show channels\n"
+ " List(detailed) the active PJSIP channels\n"),
+
+ AST_CLI_DEFINE(ast_sip_cli_traverse_objects, "List PJSIP Endpoints",
+ .command = "pjsip list endpoints",
+ .usage = "Usage: pjsip list endpoints\n"
+ " List the configured PJSIP endpoints\n"),
+ AST_CLI_DEFINE(ast_sip_cli_traverse_objects, "Show PJSIP Endpoints",
+ .command = "pjsip show endpoints",
+ .usage = "Usage: pjsip show endpoints\n"
+ " List(detailed) the configured PJSIP endpoints\n"),
+ AST_CLI_DEFINE(ast_sip_cli_traverse_objects, "Show PJSIP Endpoint",
+ .command = "pjsip show endpoint",
+ .usage = "Usage: pjsip show endpoint <id>\n"
+ " Show the configured PJSIP endpoint\n"),
+};