Gavin Hamill
2007-Jan-21 10:01 UTC
[asterisk-users] Backports to 1.2.14 of 1.4.0 app_queue features.
Nothing much to be said.. I backported ringinuse, autofill and the QueueLog application from 1.4.0 to 1.2.14. Any or all may be applied - order doesn't matter. They have received minimal testing but appear to function correctly. As always with these things, don't blame me if they connect your callers to a phonesex line, etc. http://bum.net/patches/ Cheers, Gavin.
mbodbg@gmx.net
2007-Feb-11 08:36 UTC
[asterisk-users] Backports to 1.2.14 of 1.4.0 app_queue features.
Hello Gavin, I?ve found a small bug in your patch, /* If the queue entry is within avl [the number of available members] calls from the top ... */ if (ch && idx < avl) { <------ Bug!!! if (option_debug) ast_log(LOG_DEBUG, "It's our turn (%s).\n", qe->chan->name); /* If the queue entry is within avl [the number of available members] calls from the top ... */ if (ch && idx <= avl) { <---- change here if (option_debug) ast_log(LOG_DEBUG, "It's our turn (%s).\n", qe->chan->name); Otherwise if you have 3 queue members ready, and 3 waiting callers, only 2 instead of 3 phones are ringing at the same. One other question, I?ve recognized that after applying the patch, the queue application is distributing the calls using ?last in, first out? strategy. So if there is a large queue, the first callers in the queue are never distributed to a queue member. Do you know anything about that behaviour, I?m not sure if it was the same before applying the patch? Thanks and Regards Markus -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20070211/9746aac7/attachment.htm
Gary T. Giesen
2007-Sep-25 00:09 UTC
[asterisk-users] Backports to 1.2.14 of 1.4.0 app_queue features.
Sorry to drag up an old thread, but the backport of ringinuse is a godsend for those of use stuck using asterisk 1.2 (trixbox 2.2). Many thanks, Gavin GTG On 1/21/07, Gavin Hamill <gdh at laterooms.com> wrote:> Nothing much to be said.. I backported ringinuse, autofill and the QueueLog > application from 1.4.0 to 1.2.14. Any or all may be applied - order doesn't > matter. > > They have received minimal testing but appear to function correctly. As always > with these things, don't blame me if they connect your callers to a phonesex > line, etc. > > http://bum.net/patches/ > > Cheers, > Gavin. > _______________________________________________ > --Bandwidth and Colocation provided by Easynews.com -- > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users > >