Optimize io layout (#388)

This commit is contained in:
Nikolay Kim 2024-07-30 20:07:00 +02:00 committed by GitHub
parent d81e089059
commit f5bad7bfa0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 215 additions and 168 deletions

View file

@ -167,11 +167,12 @@ impl FilterLayer for SslFilter {
Ok(new_bytes)
}
Err(ref e) if e.code() == ssl::ErrorCode::ZERO_RETURN => {
log::debug!("{}: SSL Error: {:?}", buf.tag(), e);
buf.want_shutdown();
Ok(new_bytes)
}
Err(e) => {
log::trace!("SSL Error: {:?}", e);
log::trace!("{}: SSL Error: {:?}", buf.tag(), e);
Err(map_to_ioerr(e))
}
};