Number of Clients that can connect to a Named Pipe

后端 未结 2 1799
栀梦
栀梦 2020-12-11 06:09

Say a server created a named pipe \"myTestPipe\". How many clients can connect to \"myTestPipe\"? From what I have read on the Web, it seems only one client can, but wanted

2条回答
  •  隐瞒了意图╮
    2020-12-11 06:57

    You can have more than one client connect to the same named pipe. On Windows, I believe the current limitation is 256 simultaneous connections to a single named pipe, including the server's connection.

    (Unfortunately, I can't track down the appropriate MSDN page for reference, but this CPAN pipes reference mentions this limitation.)

提交回复
热议问题