Searching around the net there are cases where this has been a problem for people as socket.fromfd() and socket.dup() don't exist under Windows.
Apparently there was a workaround but that kinda didn't work and people suggest patches to recreate the functionality those two functions give but I do not know how to:
a)Implement a viable workaround or b)Patch my version of Python (2.6.5)
Apparently workable patch (I've never patched python and don't know what I'm doing here): http://bugs.python.org/issue1378
A similar case who has problems and no end solution: http://www.gossamer-threads.com/list.../python/814079
In short, I don't really care how I do it. I just want a way to pass an established socket from one python process to another while maintaining its integrity, in a Windows environment.
Please advise.
Apparently there was a workaround but that kinda didn't work and people suggest patches to recreate the functionality those two functions give but I do not know how to:
a)Implement a viable workaround or b)Patch my version of Python (2.6.5)
Apparently workable patch (I've never patched python and don't know what I'm doing here): http://bugs.python.org/issue1378
A similar case who has problems and no end solution: http://www.gossamer-threads.com/list.../python/814079
In short, I don't really care how I do it. I just want a way to pass an established socket from one python process to another while maintaining its integrity, in a Windows environment.
Please advise.
Comment