From 6955d991c91183ac648d0174f90cddb190ffa053 Mon Sep 17 00:00:00 2001 From: Robert Cutajar Date: Fri, 25 Jun 2021 20:22:17 +0200 Subject: [PATCH] fix rustls connect (#49) * fix rustls connect * Added change log and bumped version Co-authored-by: Robert Cutajar --- ntex/CHANGES.md | 4 ++++ ntex/Cargo.toml | 2 +- ntex/src/connect/rustls.rs | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ntex/CHANGES.md b/ntex/CHANGES.md index 4a7e96ae..0d7dc866 100644 --- a/ntex/CHANGES.md +++ b/ntex/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.3.19] - 2021-06-23 + +* rustls connector - #50 fix rustls connect to work around a port in hostname (giving invalid DNS) + ## [0.3.18] - 2021-06-03 * server: expose server status change notifications diff --git a/ntex/Cargo.toml b/ntex/Cargo.toml index 2f379e5c..10c0d818 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex" -version = "0.3.18" +version = "0.3.19" authors = ["ntex contributors "] description = "Framework for composable network services" readme = "README.md" diff --git a/ntex/src/connect/rustls.rs b/ntex/src/connect/rustls.rs index 26c1dbf9..066fb392 100644 --- a/ntex/src/connect/rustls.rs +++ b/ntex/src/connect/rustls.rs @@ -37,7 +37,7 @@ impl RustlsConnector { Connect: From, { let req = Connect::from(message); - let host = req.host().to_string(); + let host = req.host().split(":").next().unwrap().to_owned(); let conn = self.connector.call(req); let config = self.config.clone();