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)
423
public static int MaxAllowedConnections = IpcServerTransport.
MaxAllowedConnections
;