<html><head><meta name="qrichtext" content="1" /></head><body style="font-size:11pt;font-family:Arial">
<p>Currently IAX native call bridge is attempted to setup only if Dial application did not have L option (call time limit), the code in ast_channel_bridge() in channel.c does the check</p>
<p></p>
<p>               if (c0-&gt;tech-&gt;bridge &amp;&amp;</p>
<p>                    (<span style="font-weight:600">config-&gt;timelimit == 0</span>) &amp;&amp;</p>
<p>                    (c0-&gt;tech-&gt;bridge == c1-&gt;tech-&gt;bridge) &amp;&amp;</p>
<p></p>
<p>This is reasonable, we don't want to hand over the control channel if we want to control the call duration. But what if we have setting  &quot;transfer=mediaonly&quot; in iax.conf? To my understanding on media only native bridge we can setup native bridge and control the call duration, isn't it (the same way like sip reinvite works)? Please give me any hints why it might not work and ideas on how that may be implemented.</p>
</body></html>