Typically this happens when the traffic isn&#39;t making it back to FreeSWITCH.<span></span><br><br>On Sunday, May 31, 2015, Jon Lederman &lt;<a href="mailto:jonlederman@gmail.com">jonlederman@gmail.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<br>
We are having trouble getting WebRTC working with 1.6.  I have tracked the problem down to the do_dtls function in switch_rtp.c (shown partially below).  Two things we have noticed:<br>
<br>
1) It appears that ice.ready and ice.ready are always 0.<br>
2) DTLS negotiation never completes the handshake.<br>
<br>
Does ice have to be operative in order for dtls negotiation to proceed or the other way around?  What should I look for, which may prevent the ice setup and/or dtls handshake.<br>
We are running on google cloud.  Are there networking/NAT issues running on cloud servers that might interfere with either ICE or DTLS?<br>
<br>
Thanks in advance.<br>
<br>
-Jon<br>
<br>
<br>
static int do_dtls(switch_rtp_t *rtp_session, switch_dtls_t *dtls)<br>
{<br>
        int r = 0, ret = 0, len;<br>
        switch_size_t bytes;<br>
        unsigned char buf[4096] = &quot;&quot;;<br>
        int ready = rtp_session-&gt;ice.ice_user ? (rtp_session-&gt;ice.rready &amp;&amp; rtp_session-&gt;ice.ready) : 1;<br>
<br>
<br>
<br>
        if (!dtls-&gt;bytes &amp;&amp; !ready) {<br>
                //switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(rtp_session-&gt;session), SWITCH_LOG_ALERT, &quot;Ice not ready&quot;);<br>
                return 0;<br>
        }<br>
<br>
…<br>
<br>
<br>
<br>
<br>
_________________________________________________________________________<br>
Professional FreeSWITCH Consulting Services:<br>
<a href="javascript:;" onclick="_e(event, &#39;cvml&#39;, &#39;consulting@freeswitch.org&#39;)">consulting@freeswitch.org</a><br>
<a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
<br>
Official FreeSWITCH Sites<br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<a href="http://confluence.freeswitch.org" target="_blank">http://confluence.freeswitch.org</a><br>
<a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
<br>
FreeSWITCH-users mailing list<br>
<a href="javascript:;" onclick="_e(event, &#39;cvml&#39;, &#39;FreeSWITCH-users@lists.freeswitch.org&#39;)">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a></blockquote>