2 instantiations of ConnectionTracker
Microsoft.AspNetCore.Server.Kestrel.Transport.DirectTls (2)
Connection\DirectTlsConnectionListener.cs (1)
93
_connectionTracker = new
ConnectionTracker
(options.MaxConcurrentHandshakes);
ConnectionTracker.cs (1)
31
public static readonly ConnectionTracker Unlimited =
new
(maxHandshakes: null);
7 references to ConnectionTracker
Microsoft.AspNetCore.Server.Kestrel.Transport.DirectTls (7)
Connection\DirectTlsConnectionListener.cs (1)
48
private readonly
ConnectionTracker
_connectionTracker;
ConnectionTracker.cs (1)
31
public static readonly
ConnectionTracker
Unlimited = new(maxHandshakes: null);
TlsEventPump.cs (4)
114
private
ConnectionTracker
_connectionTracker =
ConnectionTracker
.Unlimited;
206
ConnectionTracker
? connectionTracker = null,
222
_connectionTracker = connectionTracker ??
ConnectionTracker
.Unlimited;
TlsEventPumpPool.cs (1)
60
ConnectionTracker
? connectionTracker = null,