Parcourir la source

Merge pull request #1015 from Jay424/patch-1

Fixed evaluation of IgnoreCertificateRevocationErrors to correctly se…
release/3.x.x
HansM il y a 4 ans
committed by GitHub
Parent
révision
12fca2f05a
Aucune clé connue n'a été trouvée dans la base pour cette signature ID de la clé GPG: 4AEE18F83AFDEB23
2 fichiers modifiés avec 3 ajouts et 2 suppressions
  1. +2
    -1
      Build/MQTTnet.nuspec
  2. +1
    -1
      Source/MQTTnet/Implementations/MqttTcpChannel.cs

+ 2
- 1
Build/MQTTnet.nuspec Voir le fichier

@@ -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 Voir le fichier

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



Chargement…
Annuler
Enregistrer