mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
wip
This commit is contained in:
parent
154d27b743
commit
6cc37b2d31
10 changed files with 29 additions and 19 deletions
|
@ -337,7 +337,7 @@ impl<F> Io<F> {
|
|||
"Timeout",
|
||||
))),
|
||||
Err(RecvError::Stop) => Err(Either::Right(io::Error::new(
|
||||
io::ErrorKind::Other,
|
||||
io::ErrorKind::UnexpectedEof,
|
||||
"Dispatcher stopped",
|
||||
))),
|
||||
Err(RecvError::WriteBackpressure) => {
|
||||
|
|
|
@ -360,7 +360,7 @@ pub fn bind_addr<S: net::ToSocketAddrs>(
|
|||
Err(e)
|
||||
} else {
|
||||
Err(io::Error::new(
|
||||
io::ErrorKind::Other,
|
||||
io::ErrorKind::InvalidInput,
|
||||
"Cannot bind to address.",
|
||||
))
|
||||
}
|
||||
|
|
|
@ -51,11 +51,11 @@ impl<T: Address> SslConnector<T> {
|
|||
log::trace!("{}: SSL Handshake start for: {:?}", io.tag(), host);
|
||||
|
||||
match openssl.configure() {
|
||||
Err(e) => Err(io::Error::new(io::ErrorKind::Other, e).into()),
|
||||
Err(e) => Err(io::Error::new(io::ErrorKind::InvalidInput, e).into()),
|
||||
Ok(config) => {
|
||||
let ssl = config
|
||||
.into_ssl(&host)
|
||||
.map_err(|e| io::Error::new(io::ErrorKind::Other, e))?;
|
||||
.map_err(|e| io::Error::new(io::ErrorKind::InvalidInput, e))?;
|
||||
let tag = io.tag();
|
||||
match connect_io(io, ssl).await {
|
||||
Ok(io) => {
|
||||
|
@ -64,7 +64,10 @@ impl<T: Address> SslConnector<T> {
|
|||
}
|
||||
Err(e) => {
|
||||
log::trace!("{}: SSL Handshake error: {:?}", tag, e);
|
||||
Err(io::Error::new(io::ErrorKind::Other, format!("{}", e)).into())
|
||||
Err(
|
||||
io::Error::new(io::ErrorKind::InvalidInput, format!("{}", e))
|
||||
.into(),
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -250,7 +250,9 @@ async fn handle_result<T, F>(
|
|||
ssl::ErrorCode::WANT_READ => {
|
||||
let res = io.read_notify().await;
|
||||
match res? {
|
||||
None => Err(io::Error::new(io::ErrorKind::Other, "disconnected")),
|
||||
None => {
|
||||
Err(io::Error::new(io::ErrorKind::NotConnected, "disconnected"))
|
||||
}
|
||||
_ => Ok(None),
|
||||
}
|
||||
}
|
||||
|
|
|
@ -187,14 +187,17 @@ async fn get_response(
|
|||
err
|
||||
);
|
||||
pl.set_error(
|
||||
io::Error::new(io::ErrorKind::Other, err)
|
||||
.into(),
|
||||
io::Error::new(
|
||||
io::ErrorKind::UnexpectedEof,
|
||||
err,
|
||||
)
|
||||
.into(),
|
||||
);
|
||||
}
|
||||
_ => {
|
||||
pl.set_error(
|
||||
io::Error::new(
|
||||
io::ErrorKind::Other,
|
||||
io::ErrorKind::Unsupported,
|
||||
"unexpected h2 message",
|
||||
)
|
||||
.into(),
|
||||
|
@ -216,7 +219,7 @@ async fn get_response(
|
|||
}
|
||||
}
|
||||
_ => Err(SendRequestError::Error(Box::new(io::Error::new(
|
||||
io::ErrorKind::Other,
|
||||
io::ErrorKind::Unsupported,
|
||||
"unexpected h2 message",
|
||||
)))),
|
||||
}
|
||||
|
|
|
@ -117,7 +117,7 @@ impl<B: MessageBody> MessageBody for Encoder<B> {
|
|||
Poll::Ready(Ok(Err(e))) => return Poll::Ready(Some(Err(Box::new(e)))),
|
||||
Poll::Ready(Err(_)) => {
|
||||
return Poll::Ready(Some(Err(Box::new(io::Error::new(
|
||||
io::ErrorKind::Other,
|
||||
io::ErrorKind::Interrupted,
|
||||
"Canceled",
|
||||
)))));
|
||||
}
|
||||
|
|
|
@ -217,7 +217,7 @@ pub enum BlockingError<E: fmt::Debug> {
|
|||
impl From<crate::rt::JoinError> for PayloadError {
|
||||
fn from(_: crate::rt::JoinError) -> Self {
|
||||
PayloadError::Io(io::Error::new(
|
||||
io::ErrorKind::Other,
|
||||
io::ErrorKind::Interrupted,
|
||||
"Operation is canceled",
|
||||
))
|
||||
}
|
||||
|
@ -228,7 +228,7 @@ impl From<BlockingError<io::Error>> for PayloadError {
|
|||
match err {
|
||||
BlockingError::Error(e) => PayloadError::Io(e),
|
||||
BlockingError::Canceled => PayloadError::Io(io::Error::new(
|
||||
io::ErrorKind::Other,
|
||||
io::ErrorKind::Interrupted,
|
||||
"Operation is canceled",
|
||||
)),
|
||||
}
|
||||
|
|
|
@ -408,7 +408,9 @@ where
|
|||
h2::MessageKind::Disconnect(err) => {
|
||||
log::debug!("Connection is disconnected {:?}", err);
|
||||
if let Some(mut sender) = self.streams.borrow_mut().remove(&stream.id()) {
|
||||
sender.set_error(io::Error::new(io::ErrorKind::Other, err).into());
|
||||
sender.set_error(
|
||||
io::Error::new(io::ErrorKind::UnexpectedEof, err).into(),
|
||||
);
|
||||
}
|
||||
return Ok(());
|
||||
}
|
||||
|
|
|
@ -467,7 +467,7 @@ where
|
|||
Err(e)
|
||||
} else {
|
||||
Err(io::Error::new(
|
||||
io::ErrorKind::Other,
|
||||
io::ErrorKind::InvalidInput,
|
||||
"Cannot bind to address.",
|
||||
))
|
||||
}
|
||||
|
|
|
@ -54,7 +54,7 @@ impl WsTransport {
|
|||
Ok(())
|
||||
} else {
|
||||
self.insert_flags(Flags::PROTO_ERR);
|
||||
Err(io::Error::new(io::ErrorKind::Other, err_message))
|
||||
Err(io::Error::new(io::ErrorKind::InvalidData, err_message))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -96,7 +96,7 @@ impl FilterLayer for WsTransport {
|
|||
self.codec.decode_vec(&mut src).map_err(|e| {
|
||||
log::trace!("Failed to decode ws codec frames: {:?}", e);
|
||||
self.insert_flags(Flags::PROTO_ERR);
|
||||
io::Error::new(io::ErrorKind::Other, e)
|
||||
io::Error::new(io::ErrorKind::InvalidData, e)
|
||||
})? {
|
||||
frame
|
||||
} else {
|
||||
|
@ -123,14 +123,14 @@ impl FilterLayer for WsTransport {
|
|||
Frame::Continuation(Item::FirstText(_)) => {
|
||||
self.insert_flags(Flags::PROTO_ERR);
|
||||
return Err(io::Error::new(
|
||||
io::ErrorKind::Other,
|
||||
io::ErrorKind::InvalidData,
|
||||
"WebSocket Text continuation frames are not supported",
|
||||
));
|
||||
}
|
||||
Frame::Text(_) => {
|
||||
self.insert_flags(Flags::PROTO_ERR);
|
||||
return Err(io::Error::new(
|
||||
io::ErrorKind::Other,
|
||||
io::ErrorKind::InvalidData,
|
||||
"WebSockets Text frames are not supported",
|
||||
));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue