Explorar el Código

Fix memory leak when SSL is not working properly.

release/3.x.x
Christian Kratky hace 5 años
padre
commit
975eb60e90
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      Source/MQTTnet/Implementations/MqttTcpChannel.cs

+ 2
- 2
Source/MQTTnet/Implementations/MqttTcpChannel.cs Ver fichero

@@ -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
{


Cargando…
Cancelar
Guardar