From: nahi Date: 2012-03-18T18:22:49+09:00 Subject: [ruby-core:43426] [ruby-trunk - Feature #3953] TCPSocket / UDPSocket do not accept IPAddr objects. Issue #3953 has been updated by nahi. Category set to ext Assignee set to knu knu, how do you think? ---------------------------------------- Feature #3953: TCPSocket / UDPSocket do not accept IPAddr objects. https://bugs.ruby-lang.org/issues/3953#change-24744 Author: postmodern Status: Open Priority: Normal Assignee: knu Category: ext Target version: =begin I noticed that TCPSocket/UDPSocket only accept String IPs/Hostnames, but not IPAddr objects. This is counter-intuitive since IP Addresses, along with Hostnames, are used to connect/bind to sockets. require 'socket' require 'resolv' ip = IPAddr.new(Resolv.getaddress('www.example.com')) sock = TCPSocket.new(ip,80) TypeError: can't convert IPAddr into String from (irb):5:in `initialize' from (irb):5:in `new' from (irb):5 =end -- http://bugs.ruby-lang.org/