<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br>
TC&gt;check &quot;H225_Setup_UUIE &amp; H323SignalPDU::BuildSetup&quot; within src/h323pdu.cxx<br>
TC&gt;(H323plus)<br>
<br>
i think it can be implemented later, but, why it may be needed? can you explain some<br>
situation where it need?<br>
<br><br>
TC&gt;<br>
TC&gt;you should handle this and postpone pre_answer until you get an open LC.<br>
<br>
pre_answer is not complete at this time, i say it a some kinde of hack, there is<br>
another issues with it ans sofia in case proxy-media true.<br>
<div><div></div><div class="h5"><br>
</div></div></blockquote></div><br><br>bool FSH323Connection::OnReceivedProgress(const H323SignalPDU &amp;pdu)<br>{<br>        PTRACE(4, &quot;mod_h323\t======&gt;FSH323Connection::OnReceivedProgress&quot;);<br>        m_txAudioOpened.Wait();<br>
        switch_channel_mark_pre_answered(m_fsChannel);<br>        return true;<br>}<br><br><br><br>so for me the workaround for this was:<br><br><br><br><br>bool FSH323Connection::OnReceivedProgress(const H323SignalPDU &amp;pdu)<br>
{<br>        PTRACE(4, &quot;mod_h323\t======&gt;FSH323Connection::OnReceivedProgress&quot;);<br><br>        PTRACE(4, &quot;mod_h323\t======&gt;FSH323Connection::OnReceivedProgress - disabled pre_answer!!!!&quot;);<br><br>
        //m_txAudioOpened.Wait();<br>        //switch_channel_mark_pre_answered(m_fsChannel);<br>        return true;<br>}<br><br><br><br><br><br><br>