addrinfo.getnameinfo => [nodename, service]
addrinfo.getnameinfo(flags) => [nodename, service]
addrinfo.getnameinfo(flags) => [nodename, service]
Instance Public methods
returns nodename and service as a pair of strings. This converts struct sockaddr in addrinfo to textual representation.
flags should be bitwise OR of Socket::NI_??? constants.
Addrinfo.tcp("127.0.0.1", 80).getnameinfo #=> ["localhost", "www"] Addrinfo.tcp("127.0.0.1", 80).getnameinfo(Socket::NI_NUMERICSERV) #=> ["localhost", "80"]
Please login to continue.