unix? -> bool
[permalink][rdoc][edit]-
アドレスが Unix domain socket のものならば true を返します。
require 'socket' Addrinfo.tcp("127.0.0.1", 80).unix? #=> false Addrinfo.tcp("::1", 80).unix? #=> false Addrinfo.unix("/tmp/sock").unix? #=> true
[SEE_ALSO] Addrinfo#ip?