In Linux, in Perl, using the FCGI module, using the Open Socket function, is it possible to create an unix domain sockets using abstract names?
I tried to create a socket starting with a null character \0wibble \zwibble \x{0}wibble
and it didn't work!
It worked only using pathname, as described in unix(7):
$socket = FCGI::OpenSocket( "/tmp/wibble", 10 );
Thank you!