Feature #1644
openrecv on inherited socket wrapped in TCPSocket does not read data, on Windows
Description
=begin
On Windows, if you try to wrap an existing winsock socket that was inherited from a parent process into a TCPSocket, any calls to recv on this socket in the child process will not retrieve any data.
This is because the inherited socket is not a member of the internal "socklist" structure in win32.c. rb_w32_select filters out all sockets that are not in this internal list, prior to calling ws2_32!select.
One good solution is for TCPSocket.for_fd to make sure to insert its argument into the socklist structure so that subsequent Winsock functions wrapped by Ruby will work as though the socket were created by this Ruby process. Another possible solution is to expose another method, something like TCPSocket.from_new_fd.
=end
Updated by shyouhei (Shyouhei Urabe) over 15 years ago
- Status changed from Open to Assigned
- Assignee set to usa (Usaku NAKAMURA)
Updated by usa (Usaku NAKAMURA) over 15 years ago
Inheritance of fd/handles is not supported now on Windows.
Of cource, it's our task for the future.
Updated by usa (Usaku NAKAMURA) over 15 years ago
- Priority changed from Normal to 3
Updated by znz (Kazuhiro NISHIYAMA) over 14 years ago
- Category set to ext
- Target version set to 2.0.0
Updated by usa (Usaku NAKAMURA) about 12 years ago
- Description updated (diff)
- Target version changed from 2.0.0 to 3.0
Updated by mame (Yusuke Endoh) about 7 years ago
Usa-san, do you still have a plan to imprement this?
Updated by usa (Usaku NAKAMURA) about 7 years ago
- Assignee changed from usa (Usaku NAKAMURA) to windows