<div dir="ltr">Hi,<div><br></div><div>I have a lua script where I do some business logic. After the logic I call a number on a gateway, then when the called party picked up, I call an other number on a gateway and bridge the two calls. The only problem is that I have 5 gateways and each can have maximum of 3 calls (so I can have 15 calls on this system).</div><div><br></div><div>Here is what I have at the moment (simplified version):</div><div><br></div><div><div><font face="monospace, monospace">dial_call_1 = &quot;{leg=1}sofia/gateway/gw-1/0035312345678&quot;;</font></div><div><font face="monospace, monospace">dial_call_2 = &quot;{leg=2}sofia/gateway/gw-2/0035387654321&quot;;</font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">session1 = freeswitch.Session(dial_call_1);</font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">if (session1:ready()) then</font></div><div><font face="monospace, monospace"><span class="" style="white-space:pre">        </span>session2 = freeswitch.Session(dial_call_2, session1);</font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace"><span class="" style="white-space:pre">        </span>if (session2:ready()) then</font></div><div><font face="monospace, monospace"><span class="" style="white-space:pre">                </span>freeswitch.bridge(session1, session2);</font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace"><span class="" style="white-space:pre">                </span>if (session2:ready()) then</font></div><div><font face="monospace, monospace"><span class="" style="white-space:pre">                        </span>session2:hangup();</font></div><div><font face="monospace, monospace"><span class="" style="white-space:pre">                </span>end</font></div><div><font face="monospace, monospace"><span class="" style="white-space:pre">        </span>end</font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">if (session1:ready()) then session1:hangup(); end</font></div><div><font face="monospace, monospace">end</font></div></div><br>How can I use the limit application here to set the max concurrent calls on my five gateway, each with 3 max calls and distribute outbound calls between them?<br><br>Many thanks,<br>Zoltan</div>