本文簡要介紹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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。