2 instantiations of ConnectionTracker
Microsoft.AspNetCore.Server.Kestrel.Transport.DirectTls (2)
Connection\DirectTlsConnectionListener.cs (1)
93_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)
48private readonly ConnectionTracker _connectionTracker;
ConnectionTracker.cs (1)
31public static readonly ConnectionTracker Unlimited = new(maxHandshakes: null);
TlsEventPump.cs (4)
114private ConnectionTracker _connectionTracker = ConnectionTracker.Unlimited; 206ConnectionTracker? connectionTracker = null, 222_connectionTracker = connectionTracker ?? ConnectionTracker.Unlimited;
TlsEventPumpPool.cs (1)
60ConnectionTracker? connectionTracker = null,