mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
Fix h1 encoder error
This commit is contained in:
parent
b15f393140
commit
3bd15f633f
3 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue