1 write to _handshakeTimeoutMs
Microsoft.AspNetCore.Server.Kestrel.Transport.DirectTls (1)
TlsEventPump.cs (1)
148
_handshakeTimeoutMs
= handshakeTimeout == Timeout.InfiniteTimeSpan || handshakeTimeout == TimeSpan.MaxValue
5 references to _handshakeTimeoutMs
Microsoft.AspNetCore.Server.Kestrel.Transport.DirectTls (5)
TlsEventPump.cs (5)
422
if (
_handshakeTimeoutMs
!= long.MaxValue && _handshaking.Count > 0)
1087
=>
_handshakeTimeoutMs
== long.MaxValue ? long.MaxValue : nowTimestamp +
_handshakeTimeoutMs
;
1092
=>
_handshakeTimeoutMs
!= long.MaxValue && handshakingCount > 0 ? HandshakeSweepPollTimeoutMs : IdlePollTimeoutMs;
1129
_logger.LogDebug("Handshake timed out for fd={Fd} after {TimeoutMs}ms; dropping connection.", fd,
_handshakeTimeoutMs
);