2 writes to _lastFrame
System.Net.Security (2)
System\Net\Security\SslStream.IO.cs (2)
462
if (TlsFrameHelper.TryGetFrameInfo(_buffer.EncryptedReadOnlySpan, ref
_lastFrame
))
495
if (!TlsFrameHelper.TryGetFrameInfo(_buffer.EncryptedReadOnlySpan, ref
_lastFrame
, options))
23 references to _lastFrame
System.Net.Security (23)
System\Net\Security\SslStream.IO.cs (21)
371
else if (token.Failed && (
_lastFrame
.Header.Type == TlsContentType.Handshake ||
_lastFrame
.Header.Type == TlsContentType.ChangeCipherSpec))
374
payload = TlsFrameHelper.CreateAlertFrame(
_lastFrame
.Header.Version, TlsAlertDescription.ProtocolVersion);
393
if (
_lastFrame
.Header.Type == TlsContentType.Alert &&
_lastFrame
.AlertDescription != TlsAlertDescription.CloseNotify &&
397
throw new AuthenticationException(SR.Format(SR.net_auth_tls_alert,
_lastFrame
.AlertDescription.ToString()), token.GetException());
459
switch (
_lastFrame
.Header.Type)
464
if (NetEventSource.Log.IsEnabled() &&
_lastFrame
.AlertDescription != TlsAlertDescription.CloseNotify) NetEventSource.Error(this, $"Received TLS alert {
_lastFrame
.AlertDescription}");
469
if (!_isRenego && _buffer.EncryptedReadOnlySpan[
_lastFrame
.Header.Version == SslProtocols.Ssl2 ? HandshakeTypeOffsetSsl2 : HandshakeTypeOffsetTls] == (byte)TlsHandshakeType.ClientHello &&
500
if (
_lastFrame
.HandshakeType == TlsHandshakeType.ClientHello)
503
if (
_lastFrame
.TargetName != null)
505
_sslAuthenticationOptions.TargetHost =
_lastFrame
.TargetName;
511
await _sslAuthenticationOptions.ServerOptionDelegate(this, new SslClientHelloInfo(_sslAuthenticationOptions.TargetHost,
_lastFrame
.SupportedVersions),
519
NetEventSource.Log.ReceivedFrame(this,
_lastFrame
);
539
bool isClientHello =
_lastFrame
.Header.Type == TlsContentType.Handshake &&
540
_buffer.EncryptedReadOnlySpan[
_lastFrame
.Header.Version == SslProtocols.Ssl2 ? HandshakeTypeOffsetSsl2 : HandshakeTypeOffsetTls] == (byte)TlsHandshakeType.ClientHello;
1016
TlsFrameHelper.TryGetFrameHeader(_buffer.EncryptedReadOnlySpan, ref
_lastFrame
.Header);
1017
if (
_lastFrame
.Header.Type != TlsContentType.AppData)
1112
if (!TlsFrameHelper.TryGetFrameHeader(buffer, ref
_lastFrame
.Header))
1118
return
_lastFrame
.Header.Length;
System\Net\Security\SslStream.Protocol.cs (1)
871
_lastFrame
.RawApplicationProtocols);
System\Net\Security\SslStream.TlsSessionWedge.cs (1)
87
_lastFrame
.RawApplicationProtocols);