2 instantiations of DirectTlsConnection
Microsoft.AspNetCore.Server.Kestrel.Transport.DirectTls (2)
TlsEventPump.cs (2)
826
directConnection = new
DirectTlsConnection
(
928
var earlyConnection = new
DirectTlsConnection
(
17 references to DirectTlsConnection
Microsoft.AspNetCore.Server.Kestrel.Transport.DirectTls (17)
Connection\DirectTlsConnectionListener.cs (4)
42
private readonly Channel<
DirectTlsConnection
> _readyConnections;
83
_readyConnections = Channel.CreateUnbounded<
DirectTlsConnection
>(new UnboundedChannelOptions
165
var
connection = await _readyConnections.Reader.ReadAsync(cancellationToken);
202
while (_readyConnections.Reader.TryRead(out
var
connection))
TlsEventPump.cs (12)
78
private ChannelWriter<
DirectTlsConnection
>? _readyConnections;
100
private ILogger<
DirectTlsConnection
> _directTlsConnectionLogger = NullLogger<
DirectTlsConnection
>.Instance;
132
public
DirectTlsConnection
? Connection;
174
ChannelWriter<
DirectTlsConnection
> readyConnections,
202
_directTlsConnectionLogger = loggerFactory.CreateLogger<
DirectTlsConnection
>();
741
var
earlyConnection = conn.Connection;
743
DirectTlsConnection
directConnection;
928
var
earlyConnection = new DirectTlsConnection(
1033
private void DropCompletedHandshake(int fd,
DirectTlsConnection
connection)
1042
private async Task DisposeAbandonedConnectionAsync(
DirectTlsConnection
connection)
1146
private bool InvokeClientHelloListener(
DirectTlsConnection
connection, TlsSocketSession session)
TlsEventPumpPool.cs (1)
53
ChannelWriter<
DirectTlsConnection
> readyConnections,