[Home]

Summary:ASTERISK-10674: I need the uniqueid to show un core show channels concise
Reporter:Private Name (falves11)Labels:
Date Opened:2007-11-02 12:45:01Date Closed:2007-11-03 08:57:07
Priority:MajorRegression?No
Status:Closed/CompleteComponents:Core/General
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:
Description:I use "core show channels concise" to reconcile the calls that asterisk has really open with the calls open in the database, but to do that I need that the CLI command "core show channels " shows the uniqueid. In the case of the concise version, the single change should be to replace the first line for the second, but the real change to would be to add the unique as the first field to both versions of the "core show channels"

ast_cli(fd, CONCISE_FORMAT_STRING, c->name, c->context, c->exten, c-priority, ast_state2str(c->_state)
ast_cli(fd, CONCISE_FORMAT_STRING, c->uniqueid, c->context, c->exten, c-priority, ast_state2str(c->_state)


****** ADDITIONAL INFORMATION ******

Many times somthing happens and Asterisk does not execute the 'h' extension and then my application does not get notified that the call dropped.
Comments:By: Digium Subversion (svnbot) 2007-11-02 16:24:09

Repository: asterisk
Revision: 88370

U   trunk/main/cli.c

------------------------------------------------------------------------
r88370 | russell | 2007-11-02 16:24:07 -0500 (Fri, 02 Nov 2007) | 3 lines

Show the channel unique ID in the "show channel concise" output
(closes issue ASTERISK-10674, requested by falves11, patched by me)

------------------------------------------------------------------------

By: Digium Subversion (svnbot) 2007-11-03 08:57:07

Repository: asterisk
Revision: 88435

_U  team/group/CDRfix5/
U   team/group/CDRfix5/CHANGES
U   team/group/CDRfix5/CREDITS
U   team/group/CDRfix5/channels/chan_sip.c
A   team/group/CDRfix5/channels/chan_unistim.c
A   team/group/CDRfix5/configs/unistim.conf.sample
A   team/group/CDRfix5/doc/unistim.txt
U   team/group/CDRfix5/main/cli.c
U   team/group/CDRfix5/pbx/pbx_lua.c

------------------------------------------------------------------------
r88435 | murf | 2007-11-03 08:57:06 -0500 (Sat, 03 Nov 2007) | 61 lines

Merged revisions 88367-88368,88370-88371,88376,88408-88409 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

................
r88367 | file | 2007-11-02 14:51:53 -0600 (Fri, 02 Nov 2007) | 12 lines

Merged revisions 88366 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r88366 | file | 2007-11-02 17:49:45 -0300 (Fri, 02 Nov 2007) | 4 lines

Make subscribecontext behave as advertised. It will now look for the presence of a hint in the given context (be it subscribecontext or context).
(closes issue ASTERISK-10284)
Reported by: slavon

........

................
r88368 | russell | 2007-11-02 14:56:12 -0600 (Fri, 02 Nov 2007) | 13 lines

Merge the code from asterisk/team/group/chan_unistim:

This introduces a new channel driver, chan_unistim, that supports the Unistim
VoIP protocol for Nortel phones.  The following models have been confirmed
to work: i2002, i2004 and i2050.

(closes issue ASTERISK-8623)
Reported by: c_hans
Patches:
     chan_unistim.patch uploaded by c (license 304)
     ustm_no_conf.diff uploaded by junky (license 177)
Tested by: c_hans, dbowerman, math, junky, loloski

................
r88370 | russell | 2007-11-02 15:25:55 -0600 (Fri, 02 Nov 2007) | 3 lines

Show the channel unique ID in the "show channel concise" output
(closes issue ASTERISK-10674, requested by falves11, patched by me)

................
r88371 | russell | 2007-11-02 15:36:37 -0600 (Fri, 02 Nov 2007) | 2 lines

Don't kill asterisk if extensions.lua is not present.

................
r88376 | russell | 2007-11-02 15:39:36 -0600 (Fri, 02 Nov 2007) | 2 lines

propagate the DECLINE return value back to the loader

................
r88408 | russell | 2007-11-02 16:08:15 -0600 (Fri, 02 Nov 2007) | 2 lines

Convert the CLI commands to the new format

................
r88409 | russell | 2007-11-02 16:36:30 -0600 (Fri, 02 Nov 2007) | 1 line

fix some issues with crashing on unload, when it didn't completely load cleanly
................

------------------------------------------------------------------------