Przeglądaj źródła

Merge pull request #1015 from Jay424/patch-1

Fixed evaluation of IgnoreCertificateRevocationErrors to correctly se…
release/3.x.x
HansM 4 lat temu
committed by GitHub
rodzic
commit
12fca2f05a
Nie znaleziono w bazie danych klucza dla tego podpisu ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 3 dodań i 2 usunięć
  1. +2
    -1
      Build/MQTTnet.nuspec
  2. +1
    -1
      Source/MQTTnet/Implementations/MqttTcpChannel.cs

+ 2
- 1
Build/MQTTnet.nuspec Wyświetl plik

@@ -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 Wyświetl plik

@@ -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
};



Ładowanie…
Anuluj
Zapisz