in reply to AF_UNIX Domain Sockets on Windows using IO::Socket::UNIX
use Socket; socket(SOCKET, AF_UNIX, SOCK_STREAM, getprotobyname("tcp")); unlink("pool"); $pool = sockaddr_un("pool"); #fail, get error message "Socket::pack_so +ckaddr_un not implemented on this architecture", "un" stands for "uni +x", compare with sockaddr_in ("in" stands for "inet") connect(SOCKET, $pool);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: AF_UNIX Domain Sockets on Windows using IO::Socket::UNIX
by agarsha (Acolyte) on Mar 09, 2003 at 03:25 UTC |