當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby Addrinfo.connect_to用法及代碼示例


本文簡要介紹ruby語言中 Addrinfo.connect_to 的用法。

用法

connect_to([remote_addr_args], [opts]) {|socket| ... }
connect_to([remote_addr_args], [opts])

創建一個連接到 remote_addr_args 並綁定到自身的套接字。

可選的最後一個參數 opts 是由哈希表示的選項。 opts 可能有以下選項:

:超時

以秒為單位指定超時。

如果給定了一個塊,則使用套接字調用它並返回該塊的值。否則返回套接字。

Addrinfo.tcp("0.0.0.0", 4649).connect_to("www.ruby-lang.org", 80) {|s|
  s.print "GET / HTTP/1.0\r\nHost: www.ruby-lang.org\r\n\r\n"
  puts s.read
}

相關用法


注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 Addrinfo.connect_to。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。