Remove port from host for openssl connector #152

This commit is contained in:
Nikolay Kim 2022-12-08 09:15:56 +01:00
parent 006cf75a14
commit 71ec7f8b60
5 changed files with 12 additions and 8 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.1.1] - 2022-12-08
* Remove port from host for openssl connector #152
## [0.1.0] - 2022-06-20
* Move to separate crate

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-connect"
version = "0.1.0"
version = "0.1.1"
authors = ["ntex contributors <team@ntex.rs>"]
description = "ntexwork connect utils for ntex framework"
keywords = ["network", "framework", "async", "futures"]
@ -36,11 +36,11 @@ async-std = ["ntex-rt/async-std", "ntex-async-std"]
[dependencies]
ntex-service = "0.3.1"
ntex-bytes = "0.1.15"
ntex-http = "0.1.0"
ntex-io = "0.1.8"
ntex-http = "0.1.8"
ntex-io = "0.1.11"
ntex-rt = "0.4.5"
ntex-tls = "0.1.5"
ntex-util = "0.1.17"
ntex-util = "0.1.18"
log = "0.4"
thiserror = "1.0"

View file

@ -19,7 +19,7 @@ pub trait Address: Unpin + 'static {
impl Address for String {
fn host(&self) -> &str {
self
&self
}
fn port(&self) -> Option<u16> {

View file

@ -47,7 +47,7 @@ impl<T: Address + 'static> Connector<T> {
Connect<T>: From<U>,
{
let message = Connect::from(message);
let host = message.host().to_string();
let host = message.host().split(':').next().unwrap().to_string();
let conn = self.connector.call(message);
let openssl = self.openssl.clone();

View file

@ -49,14 +49,14 @@ async-std = ["ntex-rt/async-std", "ntex-async-std", "ntex-connect/async-std"]
[dependencies]
ntex-codec = "0.6.2"
ntex-connect = "0.1.0"
ntex-connect = "0.1.1"
ntex-http = "0.1.8"
ntex-router = "0.5.1"
ntex-service = "0.3.2"
ntex-macros = "0.1.3"
ntex-util = "0.1.18"
ntex-bytes = "0.1.16"
ntex-h2 = "0.1.5"
ntex-h2 = "0.1.6"
ntex-rt = "0.4.6"
ntex-io = "0.1.11"
ntex-tls = "0.1.5"