search for: _42xx

Displaying 1 result from an estimated 1 matches for "_42xx".

Did you mean: _2xx
2006 Jan 10
0
Max calls & IAX2 trunking
...with the code that I have in place, is it allows for 4 on each server, hence the possibility of maxium of 8 concurrent calls. I need to be able to, when 1 call is placed, that each server sets it's Max_Calls to 1, and increases for each additional call. My code snippet below: exten => _42XX,1,SetGroup(Max_Calls) exten => _42XX,n,NoOP(Active Calls: ${GROUP_COUNT(Max_Calls)}) exten => _42XX,n,GotoIf($[ ${GROUP_COUNT(Max_Calls)} > 4 ]?103) exten => _42XX,n,Dial(IAX2/bc.asterisk:xxxx@192.168.102.15/${EXTEN},,t) exten => _42XX,103,Congestion() Is it possible to SetGroup(Max...