Windows NAmed Pipes alternative in Linux
问题 We are porting existing windows code to Linux. We are using ACE as abstraction layer. We are using windows named pipes for communicating with multiple clients and to perform overlapped operations . What is the equivalent to this in linux. I have checked linux named pipes(FIFO), but they seem to support only one client and server and do not support overlapped IO. Can you guide me regarding this. 回答1: Unix sockets. Essentially, Call socket(PF_UNIX, SOCK_STREAM, 0) . This returns a file