This commit is contained in:
Nikolay Kim 2024-12-05 13:39:07 +05:00
parent 154d27b743
commit 6cc37b2d31
10 changed files with 29 additions and 19 deletions

View file

@ -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) => {

View file

@ -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.",
))
}

View file

@ -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(),
)
}
}
}

View file

@ -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),
}
}

View file

@ -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",
)))),
}

View file

@ -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",
)))));
}

View file

@ -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",
)),
}

View file

@ -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(());
}

View file

@ -467,7 +467,7 @@ where
Err(e)
} else {
Err(io::Error::new(
io::ErrorKind::Other,
io::ErrorKind::InvalidInput,
"Cannot bind to address.",
))
}

View file

@ -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",
));
}