views:

16

answers:

1

In unix the sockaddr_un structure exists to hold a path. Is there some windows equivalent. I've been looking all over the place and haven't found anything.

A: 

If you want to use UNIX domain sockets on Windows, Windows Services for Unix might help.

If you're looking for a similar IPC mechanism native to Windows, you probably want named pipes.

Brian Nixon