mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 05:47:40 +03:00
Set nodelay to accept/connect sockets
This commit is contained in:
parent
d58c6c6311
commit
78dd4e5fbd
5 changed files with 31 additions and 16 deletions
|
@ -6,6 +6,8 @@
|
||||||
|
|
||||||
* Do not set `reuse_address` for tcp listener on window os
|
* Do not set `reuse_address` for tcp listener on window os
|
||||||
|
|
||||||
|
* Set nodelay to accept/connect sockets
|
||||||
|
|
||||||
* Update ntex-router v0.4.1
|
* Update ntex-router v0.4.1
|
||||||
|
|
||||||
* Update cookie v0.15.0
|
* Update cookie v0.15.0
|
||||||
|
|
|
@ -50,8 +50,8 @@ derive_more = "0.99.11"
|
||||||
either = "1.6.1"
|
either = "1.6.1"
|
||||||
encoding_rs = "0.8.26"
|
encoding_rs = "0.8.26"
|
||||||
futures = "0.3.13"
|
futures = "0.3.13"
|
||||||
ahash = "0.7.1"
|
ahash = "0.7.2"
|
||||||
h2 = "0.3"
|
h2 = "0.3.1"
|
||||||
http = "0.2.1"
|
http = "0.2.1"
|
||||||
httparse = "1.3"
|
httparse = "1.3"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
|
|
|
@ -170,6 +170,16 @@ impl<T: Address> TcpConnectorResponse<T> {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn can_continue(&self, err: &io::Error) -> bool {
|
||||||
|
trace!(
|
||||||
|
"TCP connector - failed to connect to connecting to {:?} port: {} err: {:?}",
|
||||||
|
self.req.as_ref().unwrap().host(),
|
||||||
|
self.port,
|
||||||
|
err
|
||||||
|
);
|
||||||
|
!(self.addrs.is_none() || self.addrs.as_ref().unwrap().is_empty())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T: Address> Future for TcpConnectorResponse<T> {
|
impl<T: Address> Future for TcpConnectorResponse<T> {
|
||||||
|
@ -183,6 +193,12 @@ impl<T: Address> Future for TcpConnectorResponse<T> {
|
||||||
if let Some(new) = this.stream.as_mut() {
|
if let Some(new) = this.stream.as_mut() {
|
||||||
match new.as_mut().poll(cx) {
|
match new.as_mut().poll(cx) {
|
||||||
Poll::Ready(Ok(sock)) => {
|
Poll::Ready(Ok(sock)) => {
|
||||||
|
if let Err(err) = sock.set_nodelay(true) {
|
||||||
|
if !this.can_continue(&err) {
|
||||||
|
return Poll::Ready(Err(err.into()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
let req = this.req.take().unwrap();
|
let req = this.req.take().unwrap();
|
||||||
trace!(
|
trace!(
|
||||||
"TCP connector - successfully connected to connecting to {:?} - {:?}",
|
"TCP connector - successfully connected to connecting to {:?} - {:?}",
|
||||||
|
@ -192,14 +208,7 @@ impl<T: Address> Future for TcpConnectorResponse<T> {
|
||||||
}
|
}
|
||||||
Poll::Pending => return Poll::Pending,
|
Poll::Pending => return Poll::Pending,
|
||||||
Poll::Ready(Err(err)) => {
|
Poll::Ready(Err(err)) => {
|
||||||
trace!(
|
if !this.can_continue(&err) {
|
||||||
"TCP connector - failed to connect to connecting to {:?} port: {}",
|
|
||||||
this.req.as_ref().unwrap().host(),
|
|
||||||
this.port,
|
|
||||||
);
|
|
||||||
if this.addrs.is_none()
|
|
||||||
|| this.addrs.as_ref().unwrap().is_empty()
|
|
||||||
{
|
|
||||||
return Poll::Ready(Err(err.into()));
|
return Poll::Ready(Err(err.into()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -85,7 +85,7 @@ where
|
||||||
match req {
|
match req {
|
||||||
ServerMessage::Connect(stream) => {
|
ServerMessage::Connect(stream) => {
|
||||||
let stream = FromStream::from_stream(stream).map_err(|e| {
|
let stream = FromStream::from_stream(stream).map_err(|e| {
|
||||||
error!("Can not convert to an async tcp stream: {}", e);
|
error!("Can not convert to an async io stream: {}", e);
|
||||||
});
|
});
|
||||||
|
|
||||||
if let Ok(stream) = stream {
|
if let Ok(stream) = stream {
|
||||||
|
|
|
@ -157,7 +157,9 @@ impl FromStream for TcpStream {
|
||||||
Stream::Tcp(stream) => {
|
Stream::Tcp(stream) => {
|
||||||
use std::os::unix::io::{FromRawFd, IntoRawFd};
|
use std::os::unix::io::{FromRawFd, IntoRawFd};
|
||||||
let fd = IntoRawFd::into_raw_fd(stream);
|
let fd = IntoRawFd::into_raw_fd(stream);
|
||||||
TcpStream::from_std(unsafe { FromRawFd::from_raw_fd(fd) })
|
let io = TcpStream::from_std(unsafe { FromRawFd::from_raw_fd(fd) })?;
|
||||||
|
io.set_nodelay(true)?;
|
||||||
|
Ok(io)
|
||||||
}
|
}
|
||||||
#[cfg(unix)]
|
#[cfg(unix)]
|
||||||
Stream::Uds(_) => {
|
Stream::Uds(_) => {
|
||||||
|
@ -174,7 +176,10 @@ impl FromStream for TcpStream {
|
||||||
Stream::Tcp(stream) => {
|
Stream::Tcp(stream) => {
|
||||||
use std::os::windows::io::{FromRawSocket, IntoRawSocket};
|
use std::os::windows::io::{FromRawSocket, IntoRawSocket};
|
||||||
let fd = IntoRawSocket::into_raw_socket(stream);
|
let fd = IntoRawSocket::into_raw_socket(stream);
|
||||||
TcpStream::from_std(unsafe { FromRawSocket::from_raw_socket(fd) })
|
let io =
|
||||||
|
TcpStream::from_std(unsafe { FromRawSocket::from_raw_socket(fd) })?;
|
||||||
|
io.set_nodelay(true)?;
|
||||||
|
Ok(io)
|
||||||
}
|
}
|
||||||
#[cfg(unix)]
|
#[cfg(unix)]
|
||||||
Stream::Uds(_) => {
|
Stream::Uds(_) => {
|
||||||
|
@ -190,11 +195,10 @@ impl FromStream for crate::rt::net::UnixStream {
|
||||||
match sock {
|
match sock {
|
||||||
Stream::Tcp(_) => panic!("Should not happen, bug in server impl"),
|
Stream::Tcp(_) => panic!("Should not happen, bug in server impl"),
|
||||||
Stream::Uds(stream) => {
|
Stream::Uds(stream) => {
|
||||||
|
use crate::rt::net::UnixStream;
|
||||||
use std::os::unix::io::{FromRawFd, IntoRawFd};
|
use std::os::unix::io::{FromRawFd, IntoRawFd};
|
||||||
let fd = IntoRawFd::into_raw_fd(stream);
|
let fd = IntoRawFd::into_raw_fd(stream);
|
||||||
crate::rt::net::UnixStream::from_std(unsafe {
|
UnixStream::from_std(unsafe { FromRawFd::from_raw_fd(fd) })
|
||||||
FromRawFd::from_raw_fd(fd)
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue