[asterisk-commits] gtjoseph: trunk r408523 - in /trunk: ./ res/ res/res_pjsip/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Feb 20 15:12:04 CST 2014
Author: gtjoseph
Date: Thu Feb 20 15:12:02 2014
New Revision: 408523
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=408523
Log:
pjsip_cli: Add pjsip commands 'show registrations' and 'show contacts'.
Added 'show registrations' and 'show contacts' to pjsip cli to make things
a little more consistent. The output is exactly the same as the list command.
Just needed to add entries to their respective ast_cli_entry structures.
(closes issue ASTERISK-23275)
Review: http://reviewboard.asterisk.org/r/3210/
........
Merged revisions 408522 from http://svn.asterisk.org/svn/asterisk/branches/12
Modified:
trunk/ (props changed)
trunk/res/res_pjsip/location.c
trunk/res/res_pjsip_outbound_registration.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-12-merged' - no diff available.
Modified: trunk/res/res_pjsip/location.c
URL: http://svnview.digium.com/svn/asterisk/trunk/res/res_pjsip/location.c?view=diff&rev=408523&r1=408522&r2=408523
==============================================================================
--- trunk/res/res_pjsip/location.c (original)
+++ trunk/res/res_pjsip/location.c Thu Feb 20 15:12:02 2014
@@ -649,6 +649,10 @@
.command = "pjsip list contacts",
.usage = "Usage: pjsip list contacts\n"
" List the configured PJSIP contacts\n"),
+ AST_CLI_DEFINE(ast_sip_cli_traverse_objects, "Show PJSIP Contacts",
+ .command = "pjsip show contacts",
+ .usage = "Usage: pjsip show contacts\n"
+ " Show the configured PJSIP contacts\n"),
};
/*! \brief Initialize sorcery with location support */
Modified: trunk/res/res_pjsip_outbound_registration.c
URL: http://svnview.digium.com/svn/asterisk/trunk/res/res_pjsip_outbound_registration.c?view=diff&rev=408523&r1=408522&r2=408523
==============================================================================
--- trunk/res/res_pjsip_outbound_registration.c (original)
+++ trunk/res/res_pjsip_outbound_registration.c Thu Feb 20 15:12:02 2014
@@ -1211,6 +1211,10 @@
.command = "pjsip list registrations",
.usage = "Usage: pjsip list registrations\n"
" List the configured PJSIP Registrations\n"),
+ AST_CLI_DEFINE(my_cli_traverse_objects, "Show PJSIP Registrations",
+ .command = "pjsip show registrations",
+ .usage = "Usage: pjsip show registrations\n"
+ " Show the configured PJSIP Registrations\n"),
AST_CLI_DEFINE(my_cli_traverse_objects, "Show PJSIP Registration",
.command = "pjsip show registration",
.usage = "Usage: pjsip show registration <id>\n"
More information about the asterisk-commits
mailing list