Fix h1 encoder error

This commit is contained in:
Nikolay Kim 2024-03-11 14:04:04 +05:00
parent b15f393140
commit 3bd15f633f
3 changed files with 6 additions and 6 deletions

View file

@ -1,8 +1,8 @@
# Changes
## [1.1.1] - 2024-03-07
## [1.1.1] - 2024-03-11
* http: Make EncodeError Send + Sync
* http: Replace EncodeError::Internal with Fmt error
## [1.1.0] - 2024-02-07

View file

@ -68,8 +68,8 @@ pub enum EncodeError {
UnexpectedEof,
/// Internal error
#[error("Internal error")]
Internal(Box<dyn error::Error + Send + Sync>),
#[error("Formater error {0}")]
Fmt(io::Error),
}
/// A set of errors that can occur during parsing HTTP streams

View file

@ -259,7 +259,7 @@ impl MessageType for RequestHeadType {
_ => return Err(EncodeError::UnsupportedVersion(head.version)),
}
)
.map_err(|e| EncodeError::Internal(Box::new(e)))
.map_err(EncodeError::Fmt)
}
}
@ -391,7 +391,7 @@ impl TransferEncoding {
true
} else {
writeln!(helpers::Writer(buf), "{:X}\r", msg.len())
.map_err(|e| EncodeError::Internal(Box::new(e)))?;
.map_err(EncodeError::Fmt)?;
buf.reserve(msg.len() + 2);
buf.extend_from_slice(msg);