[Home]

Summary:ASTERISK-06585: Return BUSY signal when other party is busy at Attended Transfer
Reporter:Miroslav Nachev (mnachev)Labels:
Date Opened:2006-03-21 03:16:33.000-0600Date Closed:2008-01-15 17:52:21.000-0600
Priority:MajorRegression?No
Status:Closed/CompleteComponents:Core/NewFeature
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:( 0) bug_6764.diff
Description:We do this patch because without this is impossible to have real working PBX. That's why we would like this patch to be included in the next release.
When the other party is busy the channel return busy signal instead return to the caller. The function is ast_feature_request_and_dial(...):
  ...
  else if ((f->subclass == AST_CONTROL_BUSY) ||
           (f->subclass == AST_CONTROL_CONGESTION))
       {
           state = f->subclass;
-> new lines:
           if (option_verbose > 2)
              ast_verbose( VERBOSE_PREFIX_3 "%s is busy\n", chan->name);
           ast_indicate(caller, AST_CONTROL_BUSY);
-> old lines:
           /*
           ast_frfree(f);
           f = NULL;
           break;
           */
Comments:By: Andrew Kohlsmith (akohlsmith) 2006-03-21 15:09:21.000-0600

Patch uploaded.  Disclaimer on file.

By: Joshua C. Colp (jcolp) 2006-03-23 16:00:31.000-0600

This has been fixed in 1.2 and trunk, thanks!

By: Digium Subversion (svnbot) 2008-01-15 17:52:19.000-0600

Repository: asterisk
Revision: 14523

U   branches/1.2/res/res_features.c

------------------------------------------------------------------------
r14523 | file | 2008-01-15 17:52:19 -0600 (Tue, 15 Jan 2008) | 2 lines

Issue ASTERISK-6585 - Return BUSY signal when other party is busy at Attended Transfer (Reported by mnachev)

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

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

By: Digium Subversion (svnbot) 2008-01-15 17:52:21.000-0600

Repository: asterisk
Revision: 14525

_U  trunk/
U   trunk/res/res_features.c

------------------------------------------------------------------------
r14525 | file | 2008-01-15 17:52:21 -0600 (Tue, 15 Jan 2008) | 10 lines

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

........
r14523 | file | 2006-03-23 17:51:50 -0400 (Thu, 23 Mar 2006) | 2 lines

Issue ASTERISK-6585 - Return BUSY signal when other party is busy at Attended Transfer (Reported by mnachev)

........

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

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