Thanks Andrew, It works well.<div><br></div><div>Thank you so much. :)<br><div><div><br><div class="gmail_quote">2011/11/1 Andrew Thompson <span dir="ltr"><<a href="mailto:andrew@hijacked.us">andrew@hijacked.us</a>></span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div class="im">On Tue, Nov 01, 2011 at 01:15:19PM -0700, flowerstars wrote:<br>
> Hi guys,<br>
><br>
> I am a beginner of learning erlang. My problem is whenever I call<br>
> gen_tcp:recv, I got {error, closed} all the time.<br>
><br>
> The procedure is as following:<br>
><br>
> 1> Opts = [list, {packet, 0}, {active, false}, {reuseaddr, true}].<br>
> [list,{packet,0},{active,false},{reuseaddr,true}]<br>
> 2> {ok, Sock} = gen_tcp:connect("<a href="http://pop.gmail.com" target="_blank">pop.gmail.com</a>", 995, Opts).<br>
> {ok,#Port<0.526>}<br>
> 3> Res = gen_tcp:recv(Sock, 0).<br>
> {error, closed}<br>
><br>
> Is the problem about my code or about the pop server?<br>
><br>
> Thanks so much for your reply.<br>
><br>
<br>
</div>995 is the SSL port for pop3, the server is probably waiting for the SSL<br>
handshake. If you want this to work, you'll have to use the ssl:connect<br>
function and friends.<br>
<font color="#888888"><br>
Andrew<br>
</font><div><div></div><div class="h5">_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/listinfo/erlang-questions</a><br>
</div></div></blockquote></div><br></div></div></div>