소스 검색

Fix memory leak when SSL is not working properly.

release/3.x.x
Christian Kratky 5 년 전
부모
커밋
975eb60e90
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      Source/MQTTnet/Implementations/MqttTcpChannel.cs

+ 2
- 2
Source/MQTTnet/Implementations/MqttTcpChannel.cs 파일 보기

@@ -84,9 +84,9 @@ namespace MQTTnet.Implementations
if (_options.TlsOptions.UseTls)
{
var sslStream = new SslStream(networkStream, false, InternalUserCertificateValidationCallback);
await sslStream.AuthenticateAsClientAsync(_options.Server, LoadCertificates(), _options.TlsOptions.SslProtocol, _options.TlsOptions.IgnoreCertificateRevocationErrors).ConfigureAwait(false);

_stream = sslStream;

await sslStream.AuthenticateAsClientAsync(_options.Server, LoadCertificates(), _options.TlsOptions.SslProtocol, _options.TlsOptions.IgnoreCertificateRevocationErrors).ConfigureAwait(false);
}
else
{


불러오는 중...
취소
저장