Addrinfo.unix(path [, socktype]) => addrinfo
Class Public methods
returns an addrinfo object for UNIX socket address.
socktype specifies the socket type. If it is omitted, :STREAM is used.
1 2 | Addrinfo.unix( "/tmp/sock" ) #=> #<Addrinfo: /tmp/sock SOCK_STREAM> Addrinfo.unix( "/tmp/sock" , : DGRAM ) #=> #<Addrinfo: /tmp/sock SOCK_DGRAM> |
Please login to continue.