如何知道何时有最大数量的命名管道客户端连接到服务?
How to know when there are maximum number of named pipe client's connections to service?
在this sample之后,我可以设置nMaxInstances
。
我如何知道命名管道客户端的连接数何时超过允许的最大值(服务和客户端)?
当您达到最大并发实例数时,创建超出的实例将失败。
Microsoft haven't bothered to document their error codes for CreateNamedPipe()
,所以不可能更具体。
EDIT @eryksun 友情提供了错误为 ERROR_PIPE_BUSY
的信息。这在我 1989 年的 OS/2 手册中有明确说明,但它似乎在 NT 项目中丢失了。
在this sample之后,我可以设置nMaxInstances
。
我如何知道命名管道客户端的连接数何时超过允许的最大值(服务和客户端)?
当您达到最大并发实例数时,创建超出的实例将失败。
Microsoft haven't bothered to document their error codes for CreateNamedPipe()
,所以不可能更具体。
EDIT @eryksun 友情提供了错误为 ERROR_PIPE_BUSY
的信息。这在我 1989 年的 OS/2 手册中有明确说明,但它似乎在 NT 项目中丢失了。