Bladeren bron

Merge pull request #1015 from Jay424/patch-1

Fixed evaluation of IgnoreCertificateRevocationErrors to correctly se…
release/3.x.x
HansM 4 jaren geleden
committed by GitHub
bovenliggende
commit
12fca2f05a
Geen bekende sleutel gevonden voor deze handtekening in de database GPG sleutel-ID: 4AEE18F83AFDEB23
2 gewijzigde bestanden met toevoegingen van 3 en 2 verwijderingen
  1. +2
    -1
      Build/MQTTnet.nuspec
  2. +1
    -1
      Source/MQTTnet/Implementations/MqttTcpChannel.cs

+ 2
- 1
Build/MQTTnet.nuspec Bestand weergeven

@@ -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 Bestand weergeven

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



Laden…
Annuleren
Opslaan