mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 16:44:01 +02:00
* win32/win32.c (rb_w32_fdisset): check whether fd is socket.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7558 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
83413f0304
commit
9ccc9cfaf3
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Wed Dec 15 11:03:40 2004 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
|
* win32/win32.c (rb_w32_fdisset): check whether fd is socket.
|
||||||
|
|
||||||
Wed Dec 15 10:30:37 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Wed Dec 15 10:30:37 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* ext/openssl/ossl_digest.c (ossl_digest_initialize): [ruby-dev:25198]
|
* ext/openssl/ossl_digest.c (ossl_digest_initialize): [ruby-dev:25198]
|
||||||
|
|
|
@ -1811,7 +1811,10 @@ rb_w32_fdclr(int fd, fd_set *set)
|
||||||
int
|
int
|
||||||
rb_w32_fdisset(int fd, fd_set *set)
|
rb_w32_fdisset(int fd, fd_set *set)
|
||||||
{
|
{
|
||||||
return __WSAFDIsSet(TO_SOCKET(fd), set);
|
SOCKET s = TO_SOCKET(fd);
|
||||||
|
if (!is_socket(s))
|
||||||
|
return 0;
|
||||||
|
return __WSAFDIsSet(s, set);
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue