Hello, Luca Boccassi, on Sat 10 Oct 2015 13:07:26 +0100, wrote: > <svante.sign...@gmail.com> wrote: > > Two tests fails causing ssh to hang and crashes a translator in a > > hurd terminal: test_pair_ipc and test_reqrep_ipc. Partial problems > > with these tests are that option SO_ERROR is not yet supported for > > gsetsockopt() on Hurd. > > The problem is that SO_ERROR is used by ZMQ to check the status of an > asynchronous socket connect() [1].
To be more precise, SO_ERROR is completely supported for TCP/IP sockets. It is not supported for local sockets only. But this shouldn't be a problem for zeromq at all since local sockets always either connect immediately without blocking, or get a refused connection. Samuel