Is there any new progress? I'm trying to use unix domain with SOCK_DGRAM. Since uv_pipe does not support DGRAM, I create the socket, set to non blocking mode, then pass it to uv_pipe_open. Afterwards, uv_pipe_bind return EINVAL. If I bind the socket myself without uv_pipe_bind, then uv_listen return ENOTSUP. I may be missing something.
Thank you. cedarwu On Monday, February 9, 2015 at 3:50:47 PM UTC+8, Saúl Ibarra Corretgé wrote: > > On 02/09/2015 07:57 AM, Frank wrote: > > Hello, > > > > Is it possible to connect to unix domain socket of type SOCK_DGRAM? It > > seems not to be possible atm but I may be missing something. > > > > Thanks, > > Frank > > > > > > Hi Frank, > > It's currently not supported, but you can try the following: create the > socket yourself, and try to use a uv_pipe_t or uv_udp_t handle, via the > _open functions(uv_pipe_open and uv_udp_open). > > > Cheers, > > -- > Saúl Ibarra Corretgé > bettercallsaghul.com > > > -- You received this message because you are subscribed to the Google Groups "libuv" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/libuv. For more options, visit https://groups.google.com/d/optout.
