Преглед на файлове

Merge pull request #1015 from Jay424/patch-1

Fixed evaluation of IgnoreCertificateRevocationErrors to correctly se…
release/3.x.x
HansM преди 4 години
committed by GitHub
родител
ревизия
12fca2f05a
No known key found for this signature in database GPG ключ ID: 4AEE18F83AFDEB23
променени са 2 файла, в които са добавени 3 реда и са изтрити 2 реда
  1. +2
    -1
      Build/MQTTnet.nuspec
  2. +1
    -1
      Source/MQTTnet/Implementations/MqttTcpChannel.cs

+ 2
- 1
Build/MQTTnet.nuspec Целия файл

@@ -14,7 +14,8 @@
<releaseNotes>
* [Client] Fixed wrong value for "ClientWasConnected" in "MqttClientDisconnectedEventArgs" #976 (thanks to @dbeinder).
* [Client] Added direct support for Amazon AWS connections (requires .NET Core 3.1) (thanks to @henning-krause).
* [Client] handle disconnect package and propagate disconnect reason code (thanks to @JanEggers)
* [Client] handle disconnect package and propagate disconnect reason code (thanks to @JanEggers)
* [Client] Fixed an issue when checking for revoked SSL certificates for target platform NETCOREAPP3_1.
* [ManagedClient] Exposed the internal MQTT client.
* [Server] Added client message queue interceptor for QoS level (thanks to @msallin).
* [Server] improved behavior when multiple connections fight over a session (thanks to @JanEggers)


+ 1
- 1
Source/MQTTnet/Implementations/MqttTcpChannel.cs Целия файл

@@ -87,7 +87,7 @@ namespace MQTTnet.Implementations
ApplicationProtocols = _options.TlsOptions.ApplicationProtocols,
ClientCertificates = LoadCertificates(),
EnabledSslProtocols = _options.TlsOptions.SslProtocol,
CertificateRevocationCheckMode = _options.TlsOptions.IgnoreCertificateRevocationErrors ? X509RevocationMode.Online : X509RevocationMode.NoCheck,
CertificateRevocationCheckMode = _options.TlsOptions.IgnoreCertificateRevocationErrors ? X509RevocationMode.NoCheck : X509RevocationMode.Online,
TargetHost = _options.Server
};



Зареждане…
Отказ
Запис