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;
152
internal ConnectionIoState ConnectionState =>
_connectionState
;
194
_connectionState
.Session.Dispose();
199
_logger.LogDebug(ex, "Failed to dispose half-open connection backend for fd={Fd}",
_connectionState
.Fd);
237
int bytesRead = await
_connectionState
.ReadAsync(memory);
254
_connectionState
.SuspendReadInterest();
261
_connectionState
.ResumeReadInterest();
329
var 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)
27
private TlsSocketSession TlsSession =>
_connectionState
.Session;
111
_socket = new Socket(new SafeSocketHandle((IntPtr)
_connectionState
.Fd, ownsHandle: false));