Hi again Youness,<div>thanks a lot for your help.</div><div>I believe I solved the problems you pointed before.</div><div>I am using a dumb method to exchange candidates. I write them to file and exchange them using a ftp server (I will improve it later).</div>

<div><br></div><div>So, the way I run it is:</div><div>(HostA) ./client l</div><div>(HostB) ./client r</div><div>//local candidates are gathered and written to file</div><div>(HostA) put leftCands.bin on FTP and get rightCands.bin</div>

<div>(HostB) put rightCands.bin on FTP and get leftCands.bin</div><div>//read local credentials and write them on the remote host</div><div><br></div><div>I am using a relay server, that should work as a last resort. But during the local candidate gathering, sometimes it gets a relayed candidate, but most of the times it doesn&#39;t. Can it be related with timeouts?</div>

<div><br></div><div>Either way, it can never get a pair a establish a connection. :(</div><div>I don&#39;t have a clue why this happens..</div><div><br></div><div>Can you please have a look?</div><div><br></div><div>Cheers,</div>

<div>Tiago</div><div><br></div><div><br><div class="gmail_quote">On Fri, Nov 4, 2011 at 2:03 PM, Youness Alaoui <span dir="ltr">&lt;<a href="mailto:youness.alaoui@collabora.co.uk">youness.alaoui@collabora.co.uk</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Hi again Tiago,<br>
<br>
For the remote candidates, you will need a third party server to exchange that<br>
information, usually the candidates would be sent over SIP or XMPP for example.<br>
ICE cannot work if you don&#39;t have a third party server with which you can<br>
reliably exchange candidates. For testing purposes you could have it print the<br>
candidates to stdout, and you could copy/paste that into stdin of the other<br>
instance and have it parse the input.. or you could hardcode a port to connect<br>
to and do the candidate exchange.. there&#39;s no easy way of doing that though.<br>
You cannot hardcode the candidates because the port used will be random<br>
everytime, also, you will need to exchange the randomly generated<br>
username/password (nice_agent_get_local_credentials +<br>
nice_agent_set_remote_credentials) to make the connectivity checks work.<br>
<br>
As for your example, here are a few comments :<br>
1 - you call the nice_agent_set_relay_info with stream_id being uninitialized,<br>
you must call it *after* you do the nice_agent_add_stream...<br>
2 - you don&#39;t need those GValues, you can just do<br>
  g_object_set (G_OBJECT(agent),<br>
                &quot;stun-server&quot;, &quot;66.228.45.110&quot;,<br>
                &quot;stun-server-port&quot;, 3478,<br>
                 NULL);<br>
3 - You shouldn&#39;t set the remote credentials as the same as the local ones<br>
4 - In your print_candidate_info, you may also want to print the port used.<br>
<br>
I hope this helps, let me know if you have further questions.<br>
<br>
Youness.<br>
<div class="im"><br>
<br>
On 11/03/2011 12:57 PM, Tiago Sá wrote:<br>
&gt; Hi Youness,<br>
&gt;<br>
&gt; I have been trying to create a simple application based on the first link you<br>
&gt; pointed before.<br>
&gt; Thanks for the tips you gave me. I have a couple of questions though, if you can<br>
&gt; help me.<br>
&gt;<br>
&gt; I need to find a way to get the remote candidates passed from a peer to another.<br>
&gt; Can you point an easy way to do that?<br>
&gt; Could I hardcode the remote candidates list, for testing purposes?<br>
&gt;<br>
&gt; Right now, I only get two local candidates (HOST and SERVER_REFLEXIVE).<br>
&gt; I am trying to use the numb TURN server, shouldn&#39;t I get a RELAYED candidate too?<br>
&gt;<br>
&gt; I am attaching the code. Can you please have a look at the code and check where<br>
&gt; the error could be?<br>
&gt;<br>
&gt; Thanks for helping!<br>
&gt;<br>
&gt; Regards,<br>
&gt; Tiago Sá<br>
&gt;<br>
&gt;<br>
&gt; On Wed, Oct 19, 2011 at 10:53 PM, Youness Alaoui &lt;<a href="mailto:youness.alaoui@collabora.co.uk">youness.alaoui@collabora.co.uk</a><br>
</div><div><div class="h5">&gt; &lt;mailto:<a href="mailto:youness.alaoui@collabora.co.uk">youness.alaoui@collabora.co.uk</a>&gt;&gt; wrote:<br>
&gt;<br>
&gt;     Hi,<br>
&gt;<br>
&gt;     Welcome to the world of libnice :)<br>
&gt;     Yes, doing NAT traversal is far from being easy, the only solution is pretty<br>
&gt;     much to use the ICE specification and that&#39;s not easy to implement, so that&#39;s<br>
&gt;     why you&#39;d need to use libnice.<br>
&gt;<br>
&gt;     For an example, you can have a look at the unit tests, like<br>
&gt;     tests/test-fullmode.c for example, although that does a lot of stuff. You can<br>
&gt;     see a quick example  in the documentation for NiceAgent :<br>
&gt;     <a href="http://nice.freedesktop.org/libnice/NiceAgent.html" target="_blank">http://nice.freedesktop.org/libnice/NiceAgent.html</a><br>
&gt;<br>
&gt;     For smaller examples, you can look at the libnice mailing list archives, some<br>
&gt;     people posted their example code where they were having problems. For example, a<br>
&gt;     very simple example can be seen here :<br>
&gt;     <a href="http://lists.freedesktop.org/archives/nice/2011-January/000404.html" target="_blank">http://lists.freedesktop.org/archives/nice/2011-January/000404.html</a><br>
&gt;     But make sure to click on the &quot;Next message&quot; to read the whole thread because<br>
&gt;     that example had a bug that I explained how to fix in the following emails.<br>
&gt;     Same for this thread :<br>
&gt;     <a href="http://lists.freedesktop.org/archives/nice/2011-October/000434.html" target="_blank">http://lists.freedesktop.org/archives/nice/2011-October/000434.html</a><br>
&gt;<br>
&gt;     I hope that helps,<br>
&gt;     Youness.<br>
&gt;<br>
&gt;     On 10/19/2011 09:58 AM, Tiago Sá wrote:<br>
&gt;     &gt; Hi all,<br>
&gt;     &gt;<br>
&gt;     &gt; my name is Tiago Sá, I am a junior researcher from Portugal and this is my<br>
&gt;     first<br>
&gt;     &gt; mail to this list.<br>
&gt;     &gt; I have a NAT traversal problem to solve and I have been looking for a solution<br>
&gt;     &gt; during the last weeks, which, as I found out, is not so trivial as I<br>
&gt;     thought before.<br>
&gt;     &gt; As stated on the libnice homepage, libnice seems to be what I am looking for:<br>
&gt;     &gt;<br>
&gt;     &gt;     &quot;ICE is useful for applications that want to establish peer-to-peer<br>
&gt;     UDP data<br>
&gt;     &gt;     streams. It automates the process of traversing NATs and provides security<br>
&gt;     &gt;     against some attacks. It also allows applications to create reliable<br>
&gt;     streams<br>
&gt;     &gt;     using a TCP over UDP layer.&quot;<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt; I have been looking for the provided documentation and I am feeling kind<br>
&gt;     of lost.<br>
&gt;     &gt; Is there any example application or tutorial to get started?<br>
&gt;     &gt; Could you please share a basic application of this kind or point me a<br>
&gt;     direction?<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt; Thanks in advance for your help.<br>
&gt;     &gt;<br>
&gt;     &gt; Regards,<br>
&gt;     &gt; Tiago Sá<br>
&gt;     &gt;<br>
&gt;     &gt; --<br>
&gt;     &gt; Tiago Sá<br>
&gt;     &gt; Universidade do Minho, Braga - Portugal<br>
&gt;     &gt;<br>
&gt;     &gt;  <a href="http://about.me/tiagosa/" target="_blank">http://about.me/tiagosa/</a><br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt; _______________________________________________<br>
&gt;     &gt; Nice mailing list<br>
</div></div>&gt;     &gt; <a href="mailto:Nice@lists.freedesktop.org">Nice@lists.freedesktop.org</a> &lt;mailto:<a href="mailto:Nice@lists.freedesktop.org">Nice@lists.freedesktop.org</a>&gt;<br>
<div class="im">&gt;     &gt; <a href="http://lists.freedesktop.org/mailman/listinfo/nice" target="_blank">http://lists.freedesktop.org/mailman/listinfo/nice</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;     _______________________________________________<br>
&gt;     Nice mailing list<br>
</div>&gt;     <a href="mailto:Nice@lists.freedesktop.org">Nice@lists.freedesktop.org</a> &lt;mailto:<a href="mailto:Nice@lists.freedesktop.org">Nice@lists.freedesktop.org</a>&gt;<br>
<div class="im">&gt;     <a href="http://lists.freedesktop.org/mailman/listinfo/nice" target="_blank">http://lists.freedesktop.org/mailman/listinfo/nice</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Tiago Sá<br>
&gt; Universidade do Minho, Braga - Portugal<br>
</div>&gt;  <a href="http://www.tiagosa.com" target="_blank">www.tiagosa.com</a> &lt;<a href="http://www.tiagosa.com" target="_blank">http://www.tiagosa.com</a>&gt;<br>
&gt;<br>
<br>
<br>
</blockquote></div><br><br clear="all"><div><br></div>-- <br>Tiago Sá<br>Universidade do Minho, Braga - Portugal<div><img src="http://wac.2659.edgecastcdn.net/802659/production80/images/icons/favicon.ico"> <a href="http://www.tiagosa.com" target="_blank">www.tiagosa.com</a><br>

</div><br>
</div>