2 instantiations of ConnectionTracker
Microsoft.AspNetCore.Server.Kestrel.Transport.DirectTls (2)
Connection\DirectTlsConnectionListener.cs (1)
89_connectionTracker = new ConnectionTracker(options.MaxConcurrentHandshakes);
ConnectionTracker.cs (1)
31public static readonly ConnectionTracker Unlimited = new(maxHandshakes: null);
7 references to ConnectionTracker
Microsoft.AspNetCore.Server.Kestrel.Transport.DirectTls (7)
Connection\DirectTlsConnectionListener.cs (1)
45private readonly ConnectionTracker _connectionTracker;
ConnectionTracker.cs (1)
31public static readonly ConnectionTracker Unlimited = new(maxHandshakes: null);
TlsEventPump.cs (4)
106private ConnectionTracker _connectionTracker = ConnectionTracker.Unlimited; 182ConnectionTracker? connectionTracker = null) 196_connectionTracker = connectionTracker ?? ConnectionTracker.Unlimited;
TlsEventPumpPool.cs (1)
60ConnectionTracker? connectionTracker = null)