5 references to MaxAllowedConnections
Microsoft.Diagnostics.NETCore.Client (5)
DiagnosticsIpc\IpcServerTransport.cs (3)
106_maxInstances = maxInstances != MaxAllowedConnections ? maxInstances : NamedPipeServerStream.MaxAllowedServerInstances; 238_backlog = backlog != MaxAllowedConnections ? backlog : 100; 272_backlog = backlog != MaxAllowedConnections ? backlog : (int)SocketOptionName.MaxConnections;
DiagnosticsServerRouter\DiagnosticsServerRouterFactory.cs (1)
563_ipcServer = IpcServerTransport.Create(_ipcServerPath, IpcServerTransport.MaxAllowedConnections, ReversedDiagnosticsServer.Kind.Ipc);
ReversedServer\ReversedDiagnosticsServer.cs (1)
423public static int MaxAllowedConnections = IpcServerTransport.MaxAllowedConnections;