本文簡要介紹ruby語言中 Socket.gethostbyname
的用法。
用法
gethostbyname(hostname) → [official_hostname, alias_hostnames, address_family, *address_list]
請改用 Addrinfo.getaddrinfo
。不推薦使用此方法,原因如下:
-
結果的第三個元素是第一個地址的地址族。其餘地址的地址族不返回。
-
不常見的地址表示:4/16 字節的二進製字符串來表示 IPv4/IPv6 地址。
-
gethostbyname() 可能需要很長時間,並且可能會阻塞其他線程。 (GVL 無法釋放,因為gethostbyname() 不是線程安全的。)
-
此方法使用已從 POSIX 中刪除的 gethostbyname() 函數。
此方法獲取 hostname
的主機信息。
p Socket.gethostbyname("hal") #=> ["localhost", ["hal"], 2, "\x7F\x00\x00\x01"]
相關用法
- Ruby Socket.gethostbyaddr用法及代碼示例
- Ruby Socket.gethostname用法及代碼示例
- Ruby Socket.getservbyport用法及代碼示例
- Ruby Socket.getaddrinfo用法及代碼示例
- Ruby Socket.getnameinfo用法及代碼示例
- Ruby Socket.getservbyname用法及代碼示例
- Ruby Socket.getifaddrs用法及代碼示例
- Ruby Socket.pair用法及代碼示例
- Ruby Socket.udp_server_sockets用法及代碼示例
- Ruby Socket.unpack_sockaddr_in用法及代碼示例
- Ruby Socket.udp_server_recv用法及代碼示例
- Ruby Socket.new用法及代碼示例
- Ruby Socket.tcp用法及代碼示例
- Ruby Socket.listen用法及代碼示例
- Ruby Socket.unix_server_loop用法及代碼示例
- Ruby Socket.sockaddr_un用法及代碼示例
- Ruby Socket.accept用法及代碼示例
- Ruby Socket.recvfrom_nonblock用法及代碼示例
- Ruby Socket.tcp_server_sockets用法及代碼示例
- Ruby Socket.bind用法及代碼示例
- Ruby Socket.unix_server_socket用法及代碼示例
- Ruby Socket.accept_nonblock用法及代碼示例
- Ruby Socket.recvfrom用法及代碼示例
- Ruby Socket.unix用法及代碼示例
- Ruby Socket.ip_address_list用法及代碼示例
注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 Socket.gethostbyname。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。