cleanup h1 dispatcher

This commit is contained in:
Nikolay Kim 2021-12-22 15:48:59 +06:00
parent 73c5a5faac
commit 95b7290e36
2 changed files with 64 additions and 82 deletions

View file

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