类 TCPSocket

TCPSocket 代表一个 TCP/IP 客户端套接字。

一个简单的客户端可能看起来像

require 'socket'

s = TCPSocket.new 'localhost', 2000

while line = s.gets # Read lines from socket
  puts line         # and print them
end

s.close             # close socket when done

公共类方法

gethostbyname(hostname) → [official_hostname, alias_hostnames, address_family, *address_list] 点击切换源代码

请使用 Addrinfo.getaddrinfo 代替。此方法已弃用,原因如下

  • 结果的第 3 个元素是第一个地址的地址族。其余地址的地址族不会返回。

  • gethostbyname() 可能需要很长时间,并且可能会阻塞其他线程。(由于 gethostbyname() 不是线程安全的,因此无法释放 GVL。)

  • 此方法使用 gethostbyname() 函数,该函数已从 POSIX 中移除。

此方法通过 *hostname* 查询主机信息。

TCPSocket.gethostbyname("localhost")
#=> ["localhost", ["hal"], 2, "127.0.0.1"]
static VALUE
tcp_s_gethostbyname(VALUE obj, VALUE host)
{
    rb_warn("TCPSocket.gethostbyname is deprecated; use Addrinfo.getaddrinfo instead.");
    struct rb_addrinfo *res =
        rsock_addrinfo(host, Qnil, AF_UNSPEC, SOCK_STREAM, AI_CANONNAME);
    return rsock_make_hostent(host, res, tcp_sockaddr);
}
new(remote_host, remote_port, local_host=nil, local_port=nil, connect_timeout: nil) 点击切换源代码

打开到 remote_hostremote_port 的 TCP 连接。如果指定了 local_hostlocal_port,则这些参数将用于本地端建立连接。

:connect_timeout

指定超时时间(以秒为单位)。

static VALUE
tcp_init(int argc, VALUE *argv, VALUE sock)
{
    VALUE remote_host, remote_serv;
    VALUE local_host, local_serv;
    VALUE opt;
    static ID keyword_ids[2];
    VALUE kwargs[2];
    VALUE resolv_timeout = Qnil;
    VALUE connect_timeout = Qnil;

    if (!keyword_ids[0]) {
        CONST_ID(keyword_ids[0], "resolv_timeout");
        CONST_ID(keyword_ids[1], "connect_timeout");
    }

    rb_scan_args(argc, argv, "22:", &remote_host, &remote_serv,
                        &local_host, &local_serv, &opt);

    if (!NIL_P(opt)) {
        rb_get_kwargs(opt, keyword_ids, 0, 2, kwargs);
        if (kwargs[0] != Qundef) { resolv_timeout = kwargs[0]; }
        if (kwargs[1] != Qundef) { connect_timeout = kwargs[1]; }
    }

    return rsock_init_inetsock(sock, remote_host, remote_serv,
                               local_host, local_serv, INET_CLIENT,
                               resolv_timeout, connect_timeout);
}