<div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Feb 6, 2014 at 5:35 AM, Sean Cribbs <span dir="ltr"><<a href="mailto:sean@basho.com" target="_blank">sean@basho.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr">Does anyone know offhand what is the meaning of integer returned in the {ok, _} return value of prim_inet:async_accept/2? It's not documented clearly.</div>
</blockquote><div><br></div><div>It's essentially a reference, but it's generated from a counter internal to the inet driver so it's not an actual Erlang reference. It's the value of the 3rd element of the inet_async message you get when a connection arrives, allowing you to match those messages with the async_accept calls that caused them: For example:</div>
<div><br></div><div><div>1> prim_inet:async_accept(L,-1).<br></div><div>{ok,3}</div></div><div>2> flush().</div><div>{inet_async,#Port<0.586>,3,{ok,#Port<0.587>}}</div><div><br></div><div>The value 3 here is the reference.</div>
<div><br></div><div>--steve</div></div></div></div>