From b59a97a46e1bdca27e555d13d99df1eb40caeacd Mon Sep 17 00:00:00 2001 From: usa Date: Mon, 10 Nov 2008 00:57:49 +0000 Subject: * win32/win32.c (ifs_open_socket): should retry without proto_buffer if cannot find the suitable protocol. a patch from Heesob Park. fixed [ruby-core:19713] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@20166 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- win32/win32.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'win32') diff --git a/win32/win32.c b/win32/win32.c index 50fd55d07..ae692ce9f 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -2642,6 +2642,8 @@ open_ifs_socket(int af, int type, int protocol) WSA_FLAG_OVERLAPPED); break; } + if (out == INVALID_SOCKET) + out = WSASocket(af, type, protocol, NULL, 0, 0); } free(proto_buffers); -- cgit