search for: internalsocket

Displaying 1 result from an estimated 1 matches for "internalsocket".

2008 Apr 14
6
Good news: BackgrounDRb now works on Windows
...lines of code that checked if a socket was a UNIXSocket to decide whether it''s an "internal" read or write, but those lines were crashing because UNIXSocket isn''t even defined on Windows, much less used. My fix for that was to create a marker Module called "Packet::InternalSocket." Each time I created an internal socket (where the code used to create a UNIXSocket) I now call socket.extend Packet::InternalSocket so that later on the code can distinguish the internal ones from the others. 2. fork - well that''s a harder matter. Windows doesn''t support fo...