diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ext/socket/socket.c | 6 | ||||
-rw-r--r-- | test/socket/test_nonblock.rb | 2 |
3 files changed, 14 insertions, 0 deletions
@@ -1,3 +1,9 @@ +Mon Apr 20 11:10:46 2015 Eric Wong <[email protected]> + + * ext/socket/socket.c (sock_connect_nonblock): do not raise EISCONN + [ruby-core:68926] [Feature #11072] + * test/socket/test_nonblock.rb: check non-EISCONN on 2nd connect + Sun Apr 19 12:19:17 2015 Chad Brewbaker <[email protected]> * ext/{etc,openssl,tk}: Adding parens and comparisons around diff --git a/ext/socket/socket.c b/ext/socket/socket.c index a514b9ab09..bb23703706 100644 --- a/ext/socket/socket.c +++ b/ext/socket/socket.c @@ -509,6 +509,12 @@ sock_connect_nonblock(int argc, VALUE *argv, VALUE sock) } rb_readwrite_sys_fail(RB_IO_WAIT_WRITABLE, "connect(2) would block"); } + if (errno == EISCONN) { + if (!NIL_P(opts) && + Qfalse == rb_hash_lookup2(opts, sym_exception, Qundef)) { + return INT2FIX(0); + } + } rsock_sys_fail_raddrinfo_or_sockaddr("connect(2)", addr, rai); } diff --git a/test/socket/test_nonblock.rb b/test/socket/test_nonblock.rb index 6912046879..98de00eed9 100644 --- a/test/socket/test_nonblock.rb +++ b/test/socket/test_nonblock.rb @@ -69,6 +69,8 @@ class TestSocketNonblock < Test::Unit::TestCase assert_equal :wait_writable, rv end assert_equal([ [], [c], [] ], IO.select(nil, [c], nil, 60)) + assert_equal(0, c.connect_nonblock(servaddr, exception: false), + 'there should be no EISCONN error') s, sockaddr = serv.accept assert_equal(Socket.unpack_sockaddr_in(c.getsockname), Socket.unpack_sockaddr_in(sockaddr)) |