vote up 3 vote down star
1

Is there a way to pass a socket between processes (not same address space) in Windows?

I find this info Shared Sockets, therefore believe that it is possible.

"The WSADuplicateSocket function is introduced to enable socket sharing across processes"...

More info : at source code of Apache (httpd-2.2.11-win32-src.zip) have usage for api WSADuplicateSocket with comments.

flag

58% accept rate
You can use a named pipe to redirect i/o from multiple client processes. Not a shared socket but pretty simple. msdn.microsoft.com/en-us/library/… – Chris Mar 2 at 18:32

2 Answers

vote up 1 vote down

If you're creating the child process there are some things that might do it for you. See

http://www.tangentsoft.net/wskfaq/articles/passing-sockets.html (I know that this one worked in the ancient past; no idea if it works on current versions)

http://msdn.microsoft.com/en-us/library/ms682499.aspx

-- MarkusQ

link|flag
vote up 1 vote down

See the Remarks section of WSADuplicateSocket. It effectively says you can use Your Favorite Interprocess Communication Scheme to send the WSAPROTOCOL_INFO structure (it's just data!) to the target.

There are lots of IPC schemes. I'd probably use shared memory with Boost::interprocess. But you could use SendMessage if the target has a window + message loop. Or the Clipboard API, for that matter (though somewhat weird). The mechanism is your choice.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.