mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
cleanup h1 dispatcher
This commit is contained in:
parent
73c5a5faac
commit
95b7290e36
2 changed files with 64 additions and 82 deletions
|
@ -356,7 +356,7 @@ impl<F: Filter> AsyncRead for Io<F> {
|
|||
buf: &mut ReadBuf<'_>,
|
||||
) -> Poll<io::Result<()>> {
|
||||
let len = self.with_read_buf(|src| {
|
||||
let len = cmp::min(src.len(), buf.capacity());
|
||||
let len = cmp::min(src.len(), buf.remaining());
|
||||
buf.put_slice(&src.split_to(len));
|
||||
len
|
||||
});
|
||||
|
@ -401,7 +401,7 @@ impl AsyncRead for IoBoxed {
|
|||
buf: &mut ReadBuf<'_>,
|
||||
) -> Poll<io::Result<()>> {
|
||||
let len = self.with_read_buf(|src| {
|
||||
let len = cmp::min(src.len(), buf.capacity());
|
||||
let len = cmp::min(src.len(), buf.remaining());
|
||||
buf.put_slice(&src.split_to(len));
|
||||
len
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue