<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>check "H225_Setup_UUIE & H323SignalPDU::BuildSetup" within src/h323pdu.cxx<br>
TC>(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><br>
TC>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 &pdu)<br>{<br> PTRACE(4, "mod_h323\t======>FSH323Connection::OnReceivedProgress");<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 &pdu)<br>
{<br> PTRACE(4, "mod_h323\t======>FSH323Connection::OnReceivedProgress");<br><br> PTRACE(4, "mod_h323\t======>FSH323Connection::OnReceivedProgress - disabled pre_answer!!!!");<br><br>
//m_txAudioOpened.Wait();<br> //switch_channel_mark_pre_answered(m_fsChannel);<br> return true;<br>}<br><br><br><br><br><br><br>