Bug #1753
closednon success open client socket not detected on windows
Description
=begin
Here the code and execution with different ruby version :
D:\usr\ruby\local\dsd17>type z_essai.rb
require 'socket'
p ""
p [RUBY_PLATFORM,RUBY_VERSION,RUBY_RELEASE_DATE]
p ""
p "Before openning client socket on non existant server"
begin
TCPSocket.open("localhost",4444) { |io| p [io,io.closed?] }
p "after openning client socket on non existant server"
rescue
p "good, non connection is detected"
p $!
end
p "*************************************************"
D:\usr\ruby\local\dsd17>ruby z_essai.rb
""
["i386-mswin32", "1.8.6", "2007-03-13"]
""
"Before openning client socket on non existant server"
"good, non connection is detected"
#<Errno::EBADF: Bad file descriptor - connect(2)>
"*************************************************"
D:\usr\ruby\local\dsd17>jruby z_essai.rb
""
["java", "1.8.6", "2009-06-15"]
""
"Before openning client socket on non existant server"
"good, non connection is detected"
#<Errno::ECONNREFUSED: Connection refused - Connection refused>
"*************************************************"
D:\usr\ruby\local\dsd17>ruby19 z_essai.rb
""
["i386-mswin32", "1.9.1", "2009-01-30"]
""
"Before openning client socket on non existant server"
[#TCPSocket:0xabf914, false]
"after openning client socket on non existant server"
"*************************************************"
D:\usr\ruby\local\dsd17>
=end
Updated by rogerdpack (Roger Pack) almost 17 years ago
=begin
I get this too [for mingw 1.9]. Odd.
=r
=end
Updated by phasis68 (Heesob Park) almost 17 years ago
Updated by phasis68 (Heesob Park) almost 17 years ago
=begin
This is the bug of ruby 1.9.x not 1.8.7.
Is there any reason not applying this patch?
=end
Updated by shyouhei (Shyouhei Urabe) almost 17 years ago
- Status changed from Open to Assigned
- Assignee set to wyhaines (Kirk Haines)
=begin
I heard that this bug has been fixed for trunk and ruby_1_8. I've also backported that fix to 1.8.7.
Sorry for not checking other branches e.g, 1.8.6. Assigning to Kirk Haines for the moment.
=end
Updated by jeremyevans0 (Jeremy Evans) almost 7 years ago
- Tracker changed from Backport to Bug
- Project changed from 11 to Ruby
- Description updated (diff)
- Status changed from Assigned to Closed
- ruby -v set to 1.9.1
- Backport set to 2.5: UNKNOWN, 2.6: UNKNOWN