<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for eduardofleury.com</title>
	<atom:link href="http://blog.eduardofleury.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.eduardofleury.com</link>
	<description>Software Engineer at Google.</description>
	<lastBuildDate>Thu, 31 May 2012 04:25:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Using Nokia N8 to make SIP calls over 3G and WiFI by ali</title>
		<link>http://blog.eduardofleury.com/archives/2010/10/123#comment-321</link>
		<dc:creator>ali</dc:creator>
		<pubDate>Sat, 22 Oct 2011 11:51:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.eduardofleury.com/?p=123#comment-321</guid>
		<description><![CDATA[Dear,

I am using my  company&#039;s VOIP on my mobile.

I just want to know how to make conference call on this? as while calling this options is not is use. any idea?

Thank you]]></description>
		<content:encoded><![CDATA[<p>Dear,</p>
<p>I am using my  company&#8217;s VOIP on my mobile.</p>
<p>I just want to know how to make conference call on this? as while calling this options is not is use. any idea?</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Nokia N8 to make SIP calls over 3G and WiFI by Simon</title>
		<link>http://blog.eduardofleury.com/archives/2010/10/123#comment-319</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Tue, 04 Oct 2011 10:57:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.eduardofleury.com/?p=123#comment-319</guid>
		<description><![CDATA[Thanks for recording this process.  Very helpful!
Simon.]]></description>
		<content:encoded><![CDATA[<p>Thanks for recording this process.  Very helpful!<br />
Simon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Nokia N8 to make SIP calls over 3G and WiFI by Raja</title>
		<link>http://blog.eduardofleury.com/archives/2010/10/123#comment-318</link>
		<dc:creator>Raja</dc:creator>
		<pubDate>Fri, 12 Aug 2011 10:06:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.eduardofleury.com/?p=123#comment-318</guid>
		<description><![CDATA[Dear
      I set everything and the setup is over, but while connecting, it is not connecting. is there any this with network service provider setting?, can they block us while using through mobile network? please guide me.]]></description>
		<content:encoded><![CDATA[<p>Dear<br />
      I set everything and the setup is over, but while connecting, it is not connecting. is there any this with network service provider setting?, can they block us while using through mobile network? please guide me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Nokia N8 to make SIP calls over 3G and WiFI by jimy</title>
		<link>http://blog.eduardofleury.com/archives/2010/10/123#comment-317</link>
		<dc:creator>jimy</dc:creator>
		<pubDate>Mon, 25 Jul 2011 22:54:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.eduardofleury.com/?p=123#comment-317</guid>
		<description><![CDATA[it tells me no answere in the end. i have every thing set up . i can see the logo and every thing. it signs in to my vonage account to but it wouldnt let me call]]></description>
		<content:encoded><![CDATA[<p>it tells me no answere in the end. i have every thing set up . i can see the logo and every thing. it signs in to my vonage account to but it wouldnt let me call</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AF_UNIX sockets and the abstract namespace, inter-process communication. by CapnBry</title>
		<link>http://blog.eduardofleury.com/archives/2007/09/13#comment-226</link>
		<dc:creator>CapnBry</dc:creator>
		<pubDate>Sat, 16 Jul 2011 14:22:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.eduardofleury.com/archives/2007/09/13/#comment-226</guid>
		<description><![CDATA[Oh my goodness thank you.  I am working on a project that has a datagram UNIX socket server receiving from clients and was trying to avoid creating actual files for each client that was talking to the server.  Creating unique client-side socket names in the abstract namespace was the key.

Quasi-LUA example
Server:
s = socket(&quot;unix&quot;, &quot;dgram&quot;)
s:bind(&quot;/var/run/server/sock&quot;)
msg, from = s:recvfrom(8192)
s:sendto(msg, from)

Client
s = socket(&quot;unix&quot;, &quot;dgram&quot;)
s:bind(&quot;&quot;..getpid()..&quot;-&gt;/var/run/server/sock&quot;) -- last part not really necessary
s:sendto(&quot;Hello World&quot;, &quot;/var/run/server/sock&quot;)
print(s:recv(8192))
s:close()]]></description>
		<content:encoded><![CDATA[<p>Oh my goodness thank you.  I am working on a project that has a datagram UNIX socket server receiving from clients and was trying to avoid creating actual files for each client that was talking to the server.  Creating unique client-side socket names in the abstract namespace was the key.</p>
<p>Quasi-LUA example<br />
Server:<br />
s = socket(&#8220;unix&#8221;, &#8220;dgram&#8221;)<br />
s:bind(&#8220;/var/run/server/sock&#8221;)<br />
msg, from = s:recvfrom(8192)<br />
s:sendto(msg, from)</p>
<p>Client<br />
s = socket(&#8220;unix&#8221;, &#8220;dgram&#8221;)<br />
s:bind(&#8220;&#8221;..getpid()..&#8221;-&gt;/var/run/server/sock&#8221;) &#8212; last part not really necessary<br />
s:sendto(&#8220;Hello World&#8221;, &#8220;/var/run/server/sock&#8221;)<br />
print(s:recv(8192))<br />
s:close()</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Nokia N8 to make SIP calls over 3G and WiFI by David</title>
		<link>http://blog.eduardofleury.com/archives/2010/10/123#comment-315</link>
		<dc:creator>David</dc:creator>
		<pubDate>Mon, 16 May 2011 11:53:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.eduardofleury.com/?p=123#comment-315</guid>
		<description><![CDATA[Hello,

I have completed all steps but when I try to sign in from my contacts menu I get the message &quot;No access point defined&quot; despite that I have workings access point.

Please help me how to make the access point work with the SIP profile.]]></description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I have completed all steps but when I try to sign in from my contacts menu I get the message &#8220;No access point defined&#8221; despite that I have workings access point.</p>
<p>Please help me how to make the access point work with the SIP profile.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Nokia N8 to make SIP calls over 3G and WiFI by Denis</title>
		<link>http://blog.eduardofleury.com/archives/2010/10/123#comment-314</link>
		<dc:creator>Denis</dc:creator>
		<pubDate>Mon, 16 May 2011 04:10:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.eduardofleury.com/?p=123#comment-314</guid>
		<description><![CDATA[Caro Eduardo,

fiz todas as configurações, mas na hora de entrar para conectar pelo Adress Book, clico em CONECTAR e nada acontece, o tal globo no topo da tela jamais apareceu. A propósito estou tentando configurar o aparelho para utilizar uma central Asterisk do meu escritório. Simplesmente, não consigo fazer o aparelho conectar. Algum luz?]]></description>
		<content:encoded><![CDATA[<p>Caro Eduardo,</p>
<p>fiz todas as configurações, mas na hora de entrar para conectar pelo Adress Book, clico em CONECTAR e nada acontece, o tal globo no topo da tela jamais apareceu. A propósito estou tentando configurar o aparelho para utilizar uma central Asterisk do meu escritório. Simplesmente, não consigo fazer o aparelho conectar. Algum luz?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Nokia N8 to make SIP calls over 3G and WiFI by JayC</title>
		<link>http://blog.eduardofleury.com/archives/2010/10/123#comment-313</link>
		<dc:creator>JayC</dc:creator>
		<pubDate>Sun, 13 Mar 2011 14:44:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.eduardofleury.com/?p=123#comment-313</guid>
		<description><![CDATA[Thanks, it really helped me complete the process!
I was really stuck in the last stage.]]></description>
		<content:encoded><![CDATA[<p>Thanks, it really helped me complete the process!<br />
I was really stuck in the last stage.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Nokia N8 to make SIP calls over 3G and WiFI by Franco</title>
		<link>http://blog.eduardofleury.com/archives/2010/10/123#comment-312</link>
		<dc:creator>Franco</dc:creator>
		<pubDate>Mon, 07 Feb 2011 20:04:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.eduardofleury.com/?p=123#comment-312</guid>
		<description><![CDATA[It works perfectly. Thanks]]></description>
		<content:encoded><![CDATA[<p>It works perfectly. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Nokia N8 to make SIP calls over 3G and WiFI by Gabu</title>
		<link>http://blog.eduardofleury.com/archives/2010/10/123#comment-311</link>
		<dc:creator>Gabu</dc:creator>
		<pubDate>Fri, 21 Jan 2011 13:25:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.eduardofleury.com/?p=123#comment-311</guid>
		<description><![CDATA[It works perfectly. Thanks]]></description>
		<content:encoded><![CDATA[<p>It works perfectly. Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
