fix: Typo in MAX_RESPONSE_LENGTH

This commit is contained in:
LeoniePhiline 2023-02-16 01:54:47 +01:00
parent cf9640069d
commit c9b0337801

View file

@ -27,7 +27,7 @@ use crate::{request::parser::Rfc5321Parser, *};
use super::*; use super::*;
pub const MAX_REPONSE_LENGTH: usize = 4096; pub const MAX_RESPONSE_LENGTH: usize = 4096;
#[derive(Default)] #[derive(Default)]
pub struct ResponseReceiver { pub struct ResponseReceiver {
@ -145,7 +145,7 @@ impl ResponseReceiver {
_ => match ch { _ => match ch {
b'\r' | b'\n' => (), b'\r' | b'\n' => (),
_ => { _ => {
if self.buf.len() < MAX_REPONSE_LENGTH { if self.buf.len() < MAX_RESPONSE_LENGTH {
self.buf.push(ch); self.buf.push(ch);
} else { } else {
return Err(Error::ResponseTooLong); return Err(Error::ResponseTooLong);
@ -351,7 +351,7 @@ impl EhloResponse<String> {
parser.seek_lf()?; parser.seek_lf()?;
break; break;
} }
ch if buf.len() < MAX_REPONSE_LENGTH => { ch if buf.len() < MAX_RESPONSE_LENGTH => {
buf.push(ch); buf.push(ch);
} }
_ => return Err(Error::ResponseTooLong), _ => return Err(Error::ResponseTooLong),