1 write to _connectionState
Microsoft.AspNetCore.Server.Kestrel.Transport.DirectTls (1)
Connection\DirectTlsConnection.cs (1)
63_connectionState = connectionState;
16 references to _connectionState
Microsoft.AspNetCore.Server.Kestrel.Transport.DirectTls (16)
Connection\DirectTlsConnection.cs (14)
98_connectionState.OnFatalError = OnTlsFatalError; 152internal ConnectionIoState ConnectionState => _connectionState; 194_connectionState.Session.Dispose(); 199_logger.LogDebug(ex, "Failed to dispose half-open connection backend for fd={Fd}", _connectionState.Fd); 237int bytesRead = await _connectionState.ReadAsync(memory); 254_connectionState.SuspendReadInterest(); 261_connectionState.ResumeReadInterest(); 329var written = await _connectionState.WriteAsync(segment); 383_connectionState.Cancel(); 399_logger.LogDebug(ex, "TLS fatal error for fd={Fd}, aborting connection", _connectionState.Fd); 416_connectionState.Cancel(); 419_pump.Unregister(_connectionState.Fd); 446_connectionState.Dispose(); 451_logger.LogDebug(ex, "TLS shutdown failed for fd={Fd}", _connectionState.Fd);
Connection\DirectTlsConnection.FeatureCollection.cs (2)
27private TlsSocketSession TlsSession => _connectionState.Session; 111_socket = new Socket(new SafeSocketHandle((IntPtr)_connectionState.Fd, ownsHandle: false));