[Home]

Summary:ASTERISK-05992: [patch] show channeltype foo
Reporter:Clod Patry (junky)Labels:
Date Opened:2006-01-05 19:54:58.000-0600Date Closed:2008-01-15 16:21:36.000-0600
Priority:MinorRegression?No
Status:Closed/CompleteComponents:Core/General
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:( 0) M6149_20060113.txt
( 1) M6149_20060114.txt
( 2) M6149.txt
( 3) show_channeltype.txt
Description:Since we added some new fields to "show channeltypes", and these fields are not complete, i just created a show channeltype foo.

Example:
polux*CLI> show channeltype SIP
-- Info about channel driver: SIP --
 Device State: yes
   Indication: yes
    Transfer : yes
 Capabilities: 65535
   Send Digit: yes
   Send HTML : no
Image Support: no
 Text Support: yes
polux*CLI> show channeltype IAX2
-- Info about channel driver: IAX2 --
 Device State: yes
   Indication: yes
    Transfer : yes
 Capabilities: 65535
   Send Digit: yes
   Send HTML : yes
Image Support: yes
 Text Support: yes
polux*CLI>

Based on the same logic based on show channels and show channel foo.

Since we will not be able to add  all fields from a "show channeltypes"


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

We could add a tab completion something like:
show channeltype <tab> that will display all driver types here.

Maybe we could use ast_supports_image() and ast_supports_html() too.
Comments:By: Mark Spencer (markster) 2006-01-07 14:40:04.000-0600

are you up to adding completion to this? :)

By: Olle Johansson (oej) 2006-01-09 09:56:59.000-0600

Can we add explanation of the capabilities field?

By: Clod Patry (junky) 2006-01-09 10:12:31.000-0600

mark: never did it before, will play around later this week.

oej: what do you you propose?
i propose something like:

polux*CLI> show channeltype IAX2
-- Info about channel driver: IAX2 --
 Device State: yes
   Indication: yes
    Transfer : yes
   Send Digit: yes
   Send HTML : yes
Image Support: yes
 Text Support: yes
 Capabilities: 65535
         1 (1 <<  0)  G.723.1
         2 (1 <<  1)  GSM
         4 (1 <<  2)  G.711 u-law
         8 (1 <<  3)  G.711 A-law
        16 (1 <<  4)  G.726
        32 (1 <<  5)  ADPCM
        64 (1 <<  6)  16 bit Signed Linear PCM
       128 (1 <<  7)  LPC10
       256 (1 <<  8)  G.729A
       512 (1 <<  9)  SpeeX
      1024 (1 << 10)  iLBC
      2048 (1 << 11)  unknown
      4096 (1 << 12)  unknown
      8192 (1 << 13)  unknown
     16384 (1 << 14)  unknown
     32768 (1 << 15)  unknown
polux*CLI>

which is the same thing of show codec 65535, ive to admit its much clearer G711u instead of 4 or SLIN vs 64.

Maybe we could have show capabilities driver too, but that way is a bit redundant.



By: Clod Patry (junky) 2006-01-09 18:16:20.000-0600

With tab completion.

By: Clod Patry (junky) 2006-01-13 20:16:07.000-0600

Updated patch to use the AST_LIST_TRAVERSE for backends.

By: Russell Bryant (russell) 2006-01-13 23:15:56.000-0600

1) In show_channeltype, you don't need a variable to store whether you found an appropriate backend or not.  If one was not found, 'cl' will be NULL after the list traversal.

2) Instead of returning -1 from a cli command, you should use the define RESULT_FAILURE.

3) You can combine the following two conditionals into one:
    if (!strncasecmp(word, cl->tech->type, wordlen)) {
         if (++which > state) {
...
    if (!strncasecmp(word, cl->tech->type, wordlen) && ++which > state) {

By: Clod Patry (junky) 2006-01-14 00:13:52.000-0600

Upadated to change the drumkilla'suggestions.

By: Russell Bryant (russell) 2006-01-21 19:24:55.000-0600

added to the trunk in revision 8422, with some small modifications, thanks!

By: Digium Subversion (svnbot) 2008-01-15 16:21:01.000-0600

Repository: asterisk
Revision: 8422

U   trunk/channel.c

------------------------------------------------------------------------
r8422 | russell | 2008-01-15 16:21:00 -0600 (Tue, 15 Jan 2008) | 2 lines

add 'show channeltype' CLI command (issue ASTERISK-5992, with small modifications)

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

http://svn.digium.com/view/asterisk?view=rev&revision=8422

By: Digium Subversion (svnbot) 2008-01-15 16:21:20.000-0600

Repository: asterisk
Revision: 8441

_U  team/oej/astum/
U   team/oej/astum/apps/Makefile
U   team/oej/astum/apps/app_authenticate.c
U   team/oej/astum/apps/app_chanspy.c
U   team/oej/astum/apps/app_curl.c
U   team/oej/astum/apps/app_db.c
U   team/oej/astum/apps/app_dial.c
U   team/oej/astum/apps/app_dictate.c
U   team/oej/astum/apps/app_directory.c
U   team/oej/astum/apps/app_disa.c
U   team/oej/astum/apps/app_exec.c
U   team/oej/astum/apps/app_externalivr.c
U   team/oej/astum/apps/app_festival.c
U   team/oej/astum/apps/app_hasnewvoicemail.c
U   team/oej/astum/apps/app_image.c
U   team/oej/astum/apps/app_macro.c
U   team/oej/astum/apps/app_meetme.c
U   team/oej/astum/apps/app_mixmonitor.c
U   team/oej/astum/apps/app_osplookup.c
U   team/oej/astum/apps/app_page.c
U   team/oej/astum/apps/app_parkandannounce.c
U   team/oej/astum/apps/app_playback.c
U   team/oej/astum/apps/app_privacy.c
U   team/oej/astum/apps/app_queue.c
U   team/oej/astum/apps/app_random.c
U   team/oej/astum/apps/app_read.c
U   team/oej/astum/apps/app_readfile.c
U   team/oej/astum/apps/app_record.c
U   team/oej/astum/apps/app_sayunixtime.c
U   team/oej/astum/apps/app_senddtmf.c
U   team/oej/astum/apps/app_sendtext.c
U   team/oej/astum/apps/app_setcallerid.c
U   team/oej/astum/apps/app_skel.c
U   team/oej/astum/apps/app_sql_postgres.c
U   team/oej/astum/apps/app_stack.c
U   team/oej/astum/apps/app_talkdetect.c
U   team/oej/astum/apps/app_transfer.c
U   team/oej/astum/apps/app_url.c
U   team/oej/astum/apps/app_userevent.c
U   team/oej/astum/apps/app_verbose.c
U   team/oej/astum/apps/app_voicemail.c
U   team/oej/astum/apps/app_while.c
U   team/oej/astum/apps/app_zapras.c
U   team/oej/astum/callerid.c
U   team/oej/astum/channel.c
U   team/oej/astum/channels/chan_agent.c
U   team/oej/astum/channels/chan_iax2.c
U   team/oej/astum/channels/chan_mgcp.c
U   team/oej/astum/channels/chan_sip.c
U   team/oej/astum/codecs/codec_a_mu.c
U   team/oej/astum/codecs/codec_adpcm.c
U   team/oej/astum/codecs/codec_alaw.c
U   team/oej/astum/codecs/codec_g723_1.c
U   team/oej/astum/codecs/codec_g726.c
U   team/oej/astum/codecs/codec_gsm.c
U   team/oej/astum/codecs/codec_ilbc.c
U   team/oej/astum/codecs/codec_lpc10.c
U   team/oej/astum/codecs/codec_speex.c
U   team/oej/astum/codecs/codec_ulaw.c
U   team/oej/astum/codecs/gsm/Makefile
U   team/oej/astum/configs/sip.conf.sample
U   team/oej/astum/doc/README.variables
U   team/oej/astum/funcs/func_cdr.c
U   team/oej/astum/funcs/func_cut.c
U   team/oej/astum/funcs/func_logic.c
U   team/oej/astum/funcs/func_math.c
U   team/oej/astum/funcs/func_md5.c
U   team/oej/astum/funcs/func_odbc.c
U   team/oej/astum/funcs/func_rand.c
U   team/oej/astum/funcs/func_strings.c
U   team/oej/astum/include/asterisk/utils.h
U   team/oej/astum/pbx.c
U   team/oej/astum/res/res_agi.c
U   team/oej/astum/res/res_crypto.c
U   team/oej/astum/res/res_features.c
U   team/oej/astum/res/res_indications.c
U   team/oej/astum/res/res_monitor.c
U   team/oej/astum/res/res_musiconhold.c
U   team/oej/astum/res/res_osp.c

------------------------------------------------------------------------
r8441 | oej | 2008-01-15 16:21:19 -0600 (Tue, 15 Jan 2008) | 167 lines

Merged revisions 8359-8362,8368,8370-8372,8378-8381,8387,8393,8401-8404,8407-8411,8413,8420-8422,8426,8428,8432,8436 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
r8359 | mattf | 2006-01-21 00:19:49 +0100 (Sat, 21 Jan 2006) | 2 lines

Fix comments in sip.conf (ASTERISK-5977)

........
r8360 | russell | 2006-01-21 00:23:00 +0100 (Sat, 21 Jan 2006) | 2 lines

formatting and doxygen fixes (issue ASTERISK-6140)

........
r8361 | mattf | 2006-01-21 00:28:37 +0100 (Sat, 21 Jan 2006) | 2 lines

fix for codec_gsm on ia64 (ASTERISK-6134)

........
r8362 | russell | 2006-01-21 01:42:25 +0100 (Sat, 21 Jan 2006) | 2 lines

remove some useless checks after calls to ast_strdupa

........
r8368 | russell | 2006-01-21 04:09:01 +0100 (Sat, 21 Jan 2006) | 2 lines

remove optimization where its benefits are negligible

........
r8370 | tilghman | 2006-01-21 06:05:45 +0100 (Sat, 21 Jan 2006) | 2 lines

Bug 6096 - callerid_parse cleanup

........
r8371 | tilghman | 2006-01-21 06:15:56 +0100 (Sat, 21 Jan 2006) | 2 lines

Bug 5515 - Devicestate and API documentation update

........
r8372 | tilghman | 2006-01-21 06:22:18 +0100 (Sat, 21 Jan 2006) | 2 lines

Bug 4872 - Make Asterisk paths available to AGIs via environmental variables

........
r8378 | russell | 2006-01-21 09:01:24 +0100 (Sat, 21 Jan 2006) | 2 lines

remove some useless checks of the result of ast_strdupa

........
r8379 | russell | 2006-01-21 09:13:12 +0100 (Sat, 21 Jan 2006) | 2 lines

remove lots of useless checks of the result of ast_strdupa

........
r8380 | russell | 2006-01-21 09:23:57 +0100 (Sat, 21 Jan 2006) | 2 lines

remove useless checks of the result of ast_strdupa

........
r8381 | russell | 2006-01-21 09:45:39 +0100 (Sat, 21 Jan 2006) | 2 lines

conversions to use allocation wrappers (issue ASTERISK-6117)

........
r8387 | russell | 2006-01-21 18:50:04 +0100 (Sat, 21 Jan 2006) | 3 lines

revert my pass through the tree to remove checks of the result of ast_strdupa
(revisions 8378 through 8381)

........
r8393 | russell | 2006-01-21 19:11:40 +0100 (Sat, 21 Jan 2006) | 3 lines

don't do the memcpy inside of ast_strdupa if we know that __builtin_alloca
was not successful

........
r8401 | russell | 2006-01-21 21:20:06 +0100 (Sat, 21 Jan 2006) | 3 lines

finish reverting my pass through the tree to remove checks of the result of
ast_strdupa, this one is revision 8362

........
r8402 | tilghman | 2006-01-21 21:32:17 +0100 (Sat, 21 Jan 2006) | 2 lines

Bug 5936 - Cannot AddQueueMember on realtime queue, if queue not yet loaded (different fix than 1.2)

........
r8403 | russell | 2006-01-21 21:57:06 +0100 (Sat, 21 Jan 2006) | 2 lines

on this pass, only remove duplicate log messages

........
r8404 | russell | 2006-01-21 21:58:57 +0100 (Sat, 21 Jan 2006) | 1 line


........
r8407 | russell | 2006-01-21 22:29:06 +0100 (Sat, 21 Jan 2006) | 2 lines

clean up formatting to conform to coding guidelines and fix some typos (issue ASTERISK-6101)

........
r8408 | russell | 2006-01-21 22:50:09 +0100 (Sat, 21 Jan 2006) | 5 lines

- conversion to allocation wrappers
- get rid of some compiler warnings due to usused variables and const-ification
- remove some unnecessary uses of malloc/strncpy/free and replace with ast_strdupa
(based on the patch from issue ASTERISK-6115)

........
r8409 | russell | 2006-01-21 22:57:01 +0100 (Sat, 21 Jan 2006) | 2 lines

oops, don't build app_sql_postgres by default ...

........
r8410 | russell | 2006-01-21 23:09:06 +0100 (Sat, 21 Jan 2006) | 5 lines

- conversions to allocation wrappers
- replace malloc/memset with ast_calloc
- replace malloc/ast_copy_string with ast_strdup
(based on patch from issue ASTERISK-6139)

........
r8411 | russell | 2006-01-22 00:05:19 +0100 (Sun, 22 Jan 2006) | 2 lines

const-ify some fields in the ast_exten and ast_include structures (issue ASTERISK-6110)

........
r8413 | russell | 2006-01-22 00:17:52 +0100 (Sun, 22 Jan 2006) | 1 line


........
r8420 | russell | 2006-01-22 03:06:33 +0100 (Sun, 22 Jan 2006) | 1 line


........
r8421 | russell | 2006-01-22 03:10:19 +0100 (Sun, 22 Jan 2006) | 3 lines

prevent writing outside of the provided workspace when calculating a
substring (issue ASTERISK-6111)

........
r8422 | russell | 2006-01-22 03:23:38 +0100 (Sun, 22 Jan 2006) | 2 lines

add 'show channeltype' CLI command (issue ASTERISK-5992, with small modifications)

........
r8426 | tilghman | 2006-01-22 08:18:02 +0100 (Sun, 22 Jan 2006) | 2 lines

Bug 6148 - Add PARKEDAT variable; also cleaned up application help to fit 80-column screen.

........
r8428 | tilghman | 2006-01-22 09:09:02 +0100 (Sun, 22 Jan 2006) | 2 lines

Bug 6262 - New function STRPTIME

........
r8432 | bweschke | 2006-01-22 16:08:51 +0100 (Sun, 22 Jan 2006) | 2 lines

Correct some scenarios where CALL_LIMIT could not be getting adjusted properly allowing chan_sip to send calls when it really shouldn't. Bug ASTERISK-5953

........
r8436 | tilghman | 2006-01-22 18:28:42 +0100 (Sun, 22 Jan 2006) | 2 lines

Bug 6312 - Macro janitor

........

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

http://svn.digium.com/view/asterisk?view=rev&revision=8441

By: Digium Subversion (svnbot) 2008-01-15 16:21:33.000-0600

Repository: asterisk
Revision: 8453

_U  team/russell/autoconf_and_menuselect/
U   team/russell/autoconf_and_menuselect/app.c
U   team/russell/autoconf_and_menuselect/apps/Makefile
U   team/russell/autoconf_and_menuselect/apps/app_authenticate.c
U   team/russell/autoconf_and_menuselect/apps/app_chanspy.c
U   team/russell/autoconf_and_menuselect/apps/app_curl.c
U   team/russell/autoconf_and_menuselect/apps/app_db.c
U   team/russell/autoconf_and_menuselect/apps/app_dial.c
U   team/russell/autoconf_and_menuselect/apps/app_dictate.c
U   team/russell/autoconf_and_menuselect/apps/app_directory.c
U   team/russell/autoconf_and_menuselect/apps/app_disa.c
U   team/russell/autoconf_and_menuselect/apps/app_exec.c
U   team/russell/autoconf_and_menuselect/apps/app_externalivr.c
U   team/russell/autoconf_and_menuselect/apps/app_festival.c
U   team/russell/autoconf_and_menuselect/apps/app_hasnewvoicemail.c
U   team/russell/autoconf_and_menuselect/apps/app_image.c
U   team/russell/autoconf_and_menuselect/apps/app_macro.c
U   team/russell/autoconf_and_menuselect/apps/app_meetme.c
U   team/russell/autoconf_and_menuselect/apps/app_mixmonitor.c
U   team/russell/autoconf_and_menuselect/apps/app_osplookup.c
U   team/russell/autoconf_and_menuselect/apps/app_page.c
U   team/russell/autoconf_and_menuselect/apps/app_parkandannounce.c
U   team/russell/autoconf_and_menuselect/apps/app_playback.c
U   team/russell/autoconf_and_menuselect/apps/app_privacy.c
U   team/russell/autoconf_and_menuselect/apps/app_queue.c
U   team/russell/autoconf_and_menuselect/apps/app_random.c
U   team/russell/autoconf_and_menuselect/apps/app_read.c
U   team/russell/autoconf_and_menuselect/apps/app_readfile.c
U   team/russell/autoconf_and_menuselect/apps/app_record.c
U   team/russell/autoconf_and_menuselect/apps/app_sayunixtime.c
U   team/russell/autoconf_and_menuselect/apps/app_senddtmf.c
U   team/russell/autoconf_and_menuselect/apps/app_sendtext.c
U   team/russell/autoconf_and_menuselect/apps/app_setcallerid.c
U   team/russell/autoconf_and_menuselect/apps/app_skel.c
U   team/russell/autoconf_and_menuselect/apps/app_sql_postgres.c
U   team/russell/autoconf_and_menuselect/apps/app_stack.c
U   team/russell/autoconf_and_menuselect/apps/app_talkdetect.c
U   team/russell/autoconf_and_menuselect/apps/app_transfer.c
U   team/russell/autoconf_and_menuselect/apps/app_url.c
U   team/russell/autoconf_and_menuselect/apps/app_userevent.c
U   team/russell/autoconf_and_menuselect/apps/app_verbose.c
U   team/russell/autoconf_and_menuselect/apps/app_voicemail.c
U   team/russell/autoconf_and_menuselect/apps/app_while.c
U   team/russell/autoconf_and_menuselect/apps/app_zapras.c
U   team/russell/autoconf_and_menuselect/callerid.c
U   team/russell/autoconf_and_menuselect/channel.c
U   team/russell/autoconf_and_menuselect/channels/chan_agent.c
U   team/russell/autoconf_and_menuselect/channels/chan_iax2.c
U   team/russell/autoconf_and_menuselect/channels/chan_sip.c
U   team/russell/autoconf_and_menuselect/doc/README.variables
U   team/russell/autoconf_and_menuselect/funcs/func_cdr.c
U   team/russell/autoconf_and_menuselect/funcs/func_cut.c
U   team/russell/autoconf_and_menuselect/funcs/func_logic.c
U   team/russell/autoconf_and_menuselect/funcs/func_math.c
U   team/russell/autoconf_and_menuselect/funcs/func_md5.c
U   team/russell/autoconf_and_menuselect/funcs/func_strings.c
U   team/russell/autoconf_and_menuselect/include/asterisk/astosp.h
U   team/russell/autoconf_and_menuselect/pbx.c
U   team/russell/autoconf_and_menuselect/res/res_crypto.c
U   team/russell/autoconf_and_menuselect/res/res_features.c
U   team/russell/autoconf_and_menuselect/res/res_indications.c
U   team/russell/autoconf_and_menuselect/res/res_monitor.c
U   team/russell/autoconf_and_menuselect/res/res_musiconhold.c
U   team/russell/autoconf_and_menuselect/res/res_osp.c

------------------------------------------------------------------------
r8453 | russell | 2008-01-15 16:21:33 -0600 (Tue, 15 Jan 2008) | 122 lines

Merged revisions 8401-8404,8407-8411,8413,8420-8422,8426,8428,8432,8436,8438,8443,8446-8447 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

................
r8401 | russell | 2006-01-21 15:20:06 -0500 (Sat, 21 Jan 2006) | 3 lines

finish reverting my pass through the tree to remove checks of the result of
ast_strdupa, this one is revision 8362

................
r8402 | tilghman | 2006-01-21 15:32:17 -0500 (Sat, 21 Jan 2006) | 2 lines

Bug 5936 - Cannot AddQueueMember on realtime queue, if queue not yet loaded (different fix than 1.2)

................
r8403 | russell | 2006-01-21 15:57:06 -0500 (Sat, 21 Jan 2006) | 2 lines

on this pass, only remove duplicate log messages

................
r8404 | russell | 2006-01-21 15:58:57 -0500 (Sat, 21 Jan 2006) | 1 line


................
r8407 | russell | 2006-01-21 16:29:06 -0500 (Sat, 21 Jan 2006) | 2 lines

clean up formatting to conform to coding guidelines and fix some typos (issue ASTERISK-6101)

................
r8408 | russell | 2006-01-21 16:50:09 -0500 (Sat, 21 Jan 2006) | 5 lines

- conversion to allocation wrappers
- get rid of some compiler warnings due to usused variables and const-ification
- remove some unnecessary uses of malloc/strncpy/free and replace with ast_strdupa
(based on the patch from issue ASTERISK-6115)

................
r8409 | russell | 2006-01-21 16:57:01 -0500 (Sat, 21 Jan 2006) | 2 lines

oops, don't build app_sql_postgres by default ...

................
r8410 | russell | 2006-01-21 17:09:06 -0500 (Sat, 21 Jan 2006) | 5 lines

- conversions to allocation wrappers
- replace malloc/memset with ast_calloc
- replace malloc/ast_copy_string with ast_strdup
(based on patch from issue ASTERISK-6139)

................
r8411 | russell | 2006-01-21 18:05:19 -0500 (Sat, 21 Jan 2006) | 2 lines

const-ify some fields in the ast_exten and ast_include structures (issue ASTERISK-6110)

................
r8413 | russell | 2006-01-21 18:17:52 -0500 (Sat, 21 Jan 2006) | 1 line


................
r8420 | russell | 2006-01-21 21:06:33 -0500 (Sat, 21 Jan 2006) | 1 line


................
r8421 | russell | 2006-01-21 21:10:19 -0500 (Sat, 21 Jan 2006) | 3 lines

prevent writing outside of the provided workspace when calculating a
substring (issue ASTERISK-6111)

................
r8422 | russell | 2006-01-21 21:23:38 -0500 (Sat, 21 Jan 2006) | 2 lines

add 'show channeltype' CLI command (issue ASTERISK-5992, with small modifications)

................
r8426 | tilghman | 2006-01-22 02:18:02 -0500 (Sun, 22 Jan 2006) | 2 lines

Bug 6148 - Add PARKEDAT variable; also cleaned up application help to fit 80-column screen.

................
r8428 | tilghman | 2006-01-22 03:09:02 -0500 (Sun, 22 Jan 2006) | 2 lines

Bug 6262 - New function STRPTIME

................
r8432 | bweschke | 2006-01-22 10:08:51 -0500 (Sun, 22 Jan 2006) | 2 lines

Correct some scenarios where CALL_LIMIT could not be getting adjusted properly allowing chan_sip to send calls when it really shouldn't. Bug ASTERISK-5953

................
r8436 | tilghman | 2006-01-22 12:28:42 -0500 (Sun, 22 Jan 2006) | 2 lines

Bug 6312 - Macro janitor

................
r8438 | russell | 2006-01-22 12:53:14 -0500 (Sun, 22 Jan 2006) | 10 lines

Merged revisions 8437 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r8437 | russell | 2006-01-22 12:47:13 -0500 (Sun, 22 Jan 2006) | 2 lines

fix MixMonitor crash (issue ASTERISK-6161, probably others)

........

................
r8443 | russell | 2006-01-22 13:42:06 -0500 (Sun, 22 Jan 2006) | 2 lines

eliminate some compiler warnings

................
r8446 | russell | 2006-01-22 14:04:37 -0500 (Sun, 22 Jan 2006) | 1 line


................
r8447 | russell | 2006-01-22 14:09:50 -0500 (Sun, 22 Jan 2006) | 2 lines

fix memory leak from not freeing the list of queue members when freeing a queue

................

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

http://svn.digium.com/view/asterisk?view=rev&revision=8453

By: Digium Subversion (svnbot) 2008-01-15 16:21:36.000-0600

Repository: asterisk
Revision: 8455

_U  team/russell/make_output/
U   team/russell/make_output/apps/Makefile
U   team/russell/make_output/apps/app_authenticate.c
U   team/russell/make_output/apps/app_chanspy.c
U   team/russell/make_output/apps/app_curl.c
U   team/russell/make_output/apps/app_db.c
U   team/russell/make_output/apps/app_dial.c
U   team/russell/make_output/apps/app_dictate.c
U   team/russell/make_output/apps/app_directory.c
U   team/russell/make_output/apps/app_disa.c
U   team/russell/make_output/apps/app_exec.c
U   team/russell/make_output/apps/app_externalivr.c
U   team/russell/make_output/apps/app_festival.c
U   team/russell/make_output/apps/app_hasnewvoicemail.c
U   team/russell/make_output/apps/app_image.c
U   team/russell/make_output/apps/app_macro.c
U   team/russell/make_output/apps/app_meetme.c
U   team/russell/make_output/apps/app_mixmonitor.c
U   team/russell/make_output/apps/app_osplookup.c
U   team/russell/make_output/apps/app_page.c
U   team/russell/make_output/apps/app_parkandannounce.c
U   team/russell/make_output/apps/app_playback.c
U   team/russell/make_output/apps/app_privacy.c
U   team/russell/make_output/apps/app_queue.c
U   team/russell/make_output/apps/app_random.c
U   team/russell/make_output/apps/app_read.c
U   team/russell/make_output/apps/app_readfile.c
U   team/russell/make_output/apps/app_realtime.c
U   team/russell/make_output/apps/app_record.c
U   team/russell/make_output/apps/app_sayunixtime.c
U   team/russell/make_output/apps/app_senddtmf.c
U   team/russell/make_output/apps/app_sendtext.c
U   team/russell/make_output/apps/app_setcallerid.c
U   team/russell/make_output/apps/app_skel.c
U   team/russell/make_output/apps/app_sql_postgres.c
U   team/russell/make_output/apps/app_stack.c
U   team/russell/make_output/apps/app_talkdetect.c
U   team/russell/make_output/apps/app_transfer.c
U   team/russell/make_output/apps/app_url.c
U   team/russell/make_output/apps/app_userevent.c
U   team/russell/make_output/apps/app_verbose.c
U   team/russell/make_output/apps/app_voicemail.c
U   team/russell/make_output/apps/app_while.c
U   team/russell/make_output/apps/app_zapras.c
U   team/russell/make_output/channels/chan_agent.c
U   team/russell/make_output/channels/chan_iax2.c
U   team/russell/make_output/channels/chan_sip.c
U   team/russell/make_output/doc/README.variables
U   team/russell/make_output/funcs/func_cdr.c
U   team/russell/make_output/funcs/func_cut.c
U   team/russell/make_output/funcs/func_logic.c
U   team/russell/make_output/funcs/func_math.c
U   team/russell/make_output/funcs/func_md5.c
U   team/russell/make_output/funcs/func_odbc.c
U   team/russell/make_output/funcs/func_rand.c
U   team/russell/make_output/funcs/func_strings.c
U   team/russell/make_output/include/asterisk/astosp.h
U   team/russell/make_output/res/res_crypto.c
U   team/russell/make_output/res/res_features.c
U   team/russell/make_output/res/res_indications.c
U   team/russell/make_output/res/res_monitor.c
U   team/russell/make_output/res/res_musiconhold.c
U   team/russell/make_output/res/res_osp.c

------------------------------------------------------------------------
r8455 | russell | 2008-01-15 16:21:36 -0600 (Tue, 15 Jan 2008) | 122 lines

Merged revisions 8401-8404,8407-8411,8413,8420-8422,8426,8428,8432,8436,8438,8443,8446-8447 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

................
r8401 | russell | 2006-01-21 15:20:06 -0500 (Sat, 21 Jan 2006) | 3 lines

finish reverting my pass through the tree to remove checks of the result of
ast_strdupa, this one is revision 8362

................
r8402 | tilghman | 2006-01-21 15:32:17 -0500 (Sat, 21 Jan 2006) | 2 lines

Bug 5936 - Cannot AddQueueMember on realtime queue, if queue not yet loaded (different fix than 1.2)

................
r8403 | russell | 2006-01-21 15:57:06 -0500 (Sat, 21 Jan 2006) | 2 lines

on this pass, only remove duplicate log messages

................
r8404 | russell | 2006-01-21 15:58:57 -0500 (Sat, 21 Jan 2006) | 1 line


................
r8407 | russell | 2006-01-21 16:29:06 -0500 (Sat, 21 Jan 2006) | 2 lines

clean up formatting to conform to coding guidelines and fix some typos (issue ASTERISK-6101)

................
r8408 | russell | 2006-01-21 16:50:09 -0500 (Sat, 21 Jan 2006) | 5 lines

- conversion to allocation wrappers
- get rid of some compiler warnings due to usused variables and const-ification
- remove some unnecessary uses of malloc/strncpy/free and replace with ast_strdupa
(based on the patch from issue ASTERISK-6115)

................
r8409 | russell | 2006-01-21 16:57:01 -0500 (Sat, 21 Jan 2006) | 2 lines

oops, don't build app_sql_postgres by default ...

................
r8410 | russell | 2006-01-21 17:09:06 -0500 (Sat, 21 Jan 2006) | 5 lines

- conversions to allocation wrappers
- replace malloc/memset with ast_calloc
- replace malloc/ast_copy_string with ast_strdup
(based on patch from issue ASTERISK-6139)

................
r8411 | russell | 2006-01-21 18:05:19 -0500 (Sat, 21 Jan 2006) | 2 lines

const-ify some fields in the ast_exten and ast_include structures (issue ASTERISK-6110)

................
r8413 | russell | 2006-01-21 18:17:52 -0500 (Sat, 21 Jan 2006) | 1 line


................
r8420 | russell | 2006-01-21 21:06:33 -0500 (Sat, 21 Jan 2006) | 1 line


................
r8421 | russell | 2006-01-21 21:10:19 -0500 (Sat, 21 Jan 2006) | 3 lines

prevent writing outside of the provided workspace when calculating a
substring (issue ASTERISK-6111)

................
r8422 | russell | 2006-01-21 21:23:38 -0500 (Sat, 21 Jan 2006) | 2 lines

add 'show channeltype' CLI command (issue ASTERISK-5992, with small modifications)

................
r8426 | tilghman | 2006-01-22 02:18:02 -0500 (Sun, 22 Jan 2006) | 2 lines

Bug 6148 - Add PARKEDAT variable; also cleaned up application help to fit 80-column screen.

................
r8428 | tilghman | 2006-01-22 03:09:02 -0500 (Sun, 22 Jan 2006) | 2 lines

Bug 6262 - New function STRPTIME

................
r8432 | bweschke | 2006-01-22 10:08:51 -0500 (Sun, 22 Jan 2006) | 2 lines

Correct some scenarios where CALL_LIMIT could not be getting adjusted properly allowing chan_sip to send calls when it really shouldn't. Bug ASTERISK-5953

................
r8436 | tilghman | 2006-01-22 12:28:42 -0500 (Sun, 22 Jan 2006) | 2 lines

Bug 6312 - Macro janitor

................
r8438 | russell | 2006-01-22 12:53:14 -0500 (Sun, 22 Jan 2006) | 10 lines

Merged revisions 8437 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r8437 | russell | 2006-01-22 12:47:13 -0500 (Sun, 22 Jan 2006) | 2 lines

fix MixMonitor crash (issue ASTERISK-6161, probably others)

........

................
r8443 | russell | 2006-01-22 13:42:06 -0500 (Sun, 22 Jan 2006) | 2 lines

eliminate some compiler warnings

................
r8446 | russell | 2006-01-22 14:04:37 -0500 (Sun, 22 Jan 2006) | 1 line


................
r8447 | russell | 2006-01-22 14:09:50 -0500 (Sun, 22 Jan 2006) | 2 lines

fix memory leak from not freeing the list of queue members when freeing a queue

................

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

http://svn.digium.com/view/asterisk?view=rev&revision=8455