mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-22 12:52:33 +00:00
Merging in xylome's beaerer capabilty patch (bug 3547)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5342 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -31,7 +31,7 @@ APPS=app_dial.so app_playback.so app_voicemail.so app_directory.so app_mp3.so\
|
||||
app_talkdetect.so app_alarmreceiver.so app_userevent.so app_verbose.so \
|
||||
app_test.so app_forkcdr.so app_math.so app_realtime.so \
|
||||
app_dumpchan.so app_waitforsilence.so app_while.so app_setrdnis.so \
|
||||
app_md5.so app_readfile.so app_chanspy.so
|
||||
app_md5.so app_readfile.so app_chanspy.so app_settransfercapability.so
|
||||
|
||||
ifneq (${OSARCH},Darwin)
|
||||
ifneq (${OSARCH},SunOS)
|
||||
|
@@ -77,8 +77,8 @@ static char *descrip =
|
||||
" 'r' -- indicate ringing to the calling party, pass no audio until answered.\n"
|
||||
" 'm[(class)]' -- provide hold music to the calling party until answered (optionally\n"
|
||||
" with the specified class.\n"
|
||||
" 'M(x[^arg]) -- Executes the macro (x with ^ delim arg list) upon connect of the call.\n"
|
||||
" Also, the macro can set the MACRO_RESULT variable to do the following:\n"
|
||||
" 'M(x[^arg])' -- Executes the macro (x with ^ delim arg list) upon connect of the call.\n"
|
||||
" Also, the macro can set the MACRO_RESULT variable to do the following:\n"
|
||||
" -- ABORT - Hangup both legs of the call.\n"
|
||||
" -- CONGESTION - Behave as if line congestion was encountered.\n"
|
||||
" -- BUSY - Behave as if a busy signal was encountered. (n+101)\n"
|
||||
@@ -1039,8 +1039,8 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
|
||||
tmp->chan->cid.cid_tns = chan->cid.cid_tns;
|
||||
/* Presense of ADSI CPE on outgoing channel follows ours */
|
||||
tmp->chan->adsicpe = chan->adsicpe;
|
||||
/* pass the digital flag */
|
||||
ast_copy_flags(tmp->chan, chan, AST_FLAG_DIGITAL);
|
||||
/* Pass the transfer capability */
|
||||
tmp->chan->transfercapability = chan->transfercapability;
|
||||
|
||||
/* If we have an outbound group, set this peer channel to it */
|
||||
if (outbound_group)
|
||||
|
Reference in New Issue
Block a user