Fix not propagated checksEKU flag
This commit is contained in:
parent
7d69e09c53
commit
08b04c8e02
|
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Several reconnection issues.
|
- Several reconnection issues.
|
||||||
|
- Missing EKU flag evaluation.
|
||||||
|
|
||||||
## 1.4.2 (2019-03-05)
|
## 1.4.2 (2019-03-05)
|
||||||
|
|
||||||
|
|
|
@ -778,7 +778,7 @@ public class SessionProxy {
|
||||||
caPath: caURL.path,
|
caPath: caURL.path,
|
||||||
clientCertificatePath: (configuration.clientCertificate != nil) ? clientCertificateURL.path : nil,
|
clientCertificatePath: (configuration.clientCertificate != nil) ? clientCertificateURL.path : nil,
|
||||||
clientKeyPath: (configuration.clientKey != nil) ? clientKeyURL.path : nil,
|
clientKeyPath: (configuration.clientKey != nil) ? clientKeyURL.path : nil,
|
||||||
checksEKU: true
|
checksEKU: configuration.checksEKU ?? false
|
||||||
)
|
)
|
||||||
do {
|
do {
|
||||||
try negotiationKey.tls.start()
|
try negotiationKey.tls.start()
|
||||||
|
|
Loading…
Reference in New Issue