本文简要介绍ruby语言中 IPSocket.addr
的用法。
用法
addr([reverse_lookup]) → [address_family, port, hostname, numeric_address]
将本地地址作为包含address_family、端口、主机名和numeric_address 的数组返回。
如果 reverse_lookup
是 true
或 :hostname
,则使用反向查找从 numeric_address 获取主机名。或者如果是 false
或 :numeric
,则主机名与 numeric_address 相同。或者如果它是 nil
或省略,则服从 ipsocket.do_not_reverse_lookup
。另见Socket.getaddrinfo
。
TCPSocket.open("www.ruby-lang.org", 80) {|sock|
p sock.addr #=> ["AF_INET", 49429, "hal", "192.168.0.128"]
p sock.addr(true) #=> ["AF_INET", 49429, "hal", "192.168.0.128"]
p sock.addr(false) #=> ["AF_INET", 49429, "192.168.0.128", "192.168.0.128"]
p sock.addr(:hostname) #=> ["AF_INET", 49429, "hal", "192.168.0.128"]
p sock.addr(:numeric) #=> ["AF_INET", 49429, "192.168.0.128", "192.168.0.128"]
}
相关用法
- Ruby IPSocket.peeraddr用法及代码示例
- Ruby IPSocket.recvfrom用法及代码示例
- Ruby IPSocket.getaddress用法及代码示例
- Ruby IPAddr.include?用法及代码示例
- Ruby IPAddr类用法及代码示例
- Ruby Integer.nobits?用法及代码示例
- Ruby Integer lcm()用法及代码示例
- Ruby IO.eof用法及代码示例
- Ruby Integer.self >=用法及代码示例
- Ruby Integer.self >>用法及代码示例
- Ruby Integer.next用法及代码示例
- Ruby Integer.self ** numeric用法及代码示例
- Ruby Integer integer?用法及代码示例
- Ruby Integer.truncate用法及代码示例
- Ruby Integer digits用法及代码示例
- Ruby Integer divmod()用法及代码示例
- Ruby Inflate.inflate用法及代码示例
- Ruby IO.read用法及代码示例
- Ruby Integer floor()用法及代码示例
- Ruby Integer.sqrt用法及代码示例
- Ruby IO.fileno用法及代码示例
- Ruby Integer to_f用法及代码示例
- Ruby Integer to_s用法及代码示例
- Ruby IO.pread用法及代码示例
- Ruby Integer.bit_length用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 IPSocket.addr。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。