diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-11-10 00:57:49 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-11-10 00:57:49 +0000 |
| commit | b59a97a46e1bdca27e555d13d99df1eb40caeacd (patch) | |
| tree | e95dca6b0fd573eaa3a3099990748d1f8f8aa024 | |
| parent | 9c93804b27cd0358f5d4818632b7ad8cc37f62f3 (diff) | |
| download | ruby-b59a97a46e1bdca27e555d13d99df1eb40caeacd.tar.gz ruby-b59a97a46e1bdca27e555d13d99df1eb40caeacd.tar.xz ruby-b59a97a46e1bdca27e555d13d99df1eb40caeacd.zip | |
* 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
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | win32/win32.c | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,9 @@ +Mon Nov 10 09:56:20 2008 NAKAMURA Usaku <usa@ruby-lang.org> + + * 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] + Thu Nov 6 22:05:36 2008 Masaki Suketa <masaki.suketa@nifty.ne.jp> * ext/win32ole/win32ole.c (fole_s_connect, fole_initialize, 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); |
