Hi. I'm working on a project that uses libuv for a multi-threaded TCP server. It's working flawlessly on Unix/Mac OS X where a parent binds to a socket and then passes the socket to multiple threads using IPC (the libuv pipe functions). However, on Windows this does not work. On Windows the uv_listen() call on the socket in the thread succeeds but the connection callback is never called. I've been looking through the source code and came across this issue: https://github.com/joyent/libuv/issues/926 which seems related.
1. Has anyone written something similar? (i.e. use libuv on Windows with threads to have multiple threads listen on a socket). 2. Does test/benchmark-multi-accept.c work for anyone on Windows? (This test is similar in function to the core of my code). John. -- 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 http://groups.google.com/group/libuv. For more options, visit https://groups.google.com/groups/opt_out.
