|
From: <zmo...@ie...> - 2013-07-09 19:54:34
|
Quoting Stephen Sinclair <rad...@gm...>: >> >> test run not completed >> liblo test FAILED >> liblo server error 92 in setsockopt(SO_REUSEPORT): Protocol not available >> > > Weird, that's the first time I've seen this one. afair, SO_REUSEPORT has been introduced in linux-3.9 (prior it was only there on some BSD flavors), and that's why it is *now* starting to make problems. note that SO_RESUSEPORT is usually *not* what we want: it will allow multiple applications to open the same port - sounds cool, but the packets will be distributed using a round-robin algorithm). what we usually do want is SO_REUSEADDR. dfmads IOhannes |