Been trying to find a good way to pass a fd around on unix via a unix domain socket, but it seems
http://nodejs.org/api/all.html#all_stream_write_string_encoding_fd Is not honored by net.Socket/Servers, is this intentional? I know in windows has similar functionality when talking about sockets via WSADuplicateSocket ( http://msdn.microsoft.com/en-us/library/windows/desktop/ms741565(v=vs.85).aspx ) but am unsure if this idea of passing fds to non-children is being phased out and if I should start writing a module. Any info would be useful, thanks
