mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Fix rustls client/server filters (#401)
This commit is contained in:
parent
9b24698087
commit
c71678c999
4 changed files with 27 additions and 25 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [2.0.1] - 2024-08-26
|
||||
|
||||
* Fix rustls client/server filters
|
||||
|
||||
## [2.0.0] - 2024-05-28
|
||||
|
||||
* Use async fn for Service::ready() and Service::shutdown()
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-tls"
|
||||
version = "2.0.0"
|
||||
version = "2.0.1"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "An implementation of SSL streams for ntex backed by OpenSSL"
|
||||
keywords = ["network", "framework", "async", "futures"]
|
||||
|
@ -26,10 +26,10 @@ rustls = ["tls_rust"]
|
|||
|
||||
[dependencies]
|
||||
ntex-bytes = "0.1"
|
||||
ntex-io = "2.0"
|
||||
ntex-util = "2.0"
|
||||
ntex-service = "3.0"
|
||||
ntex-net = "2.0"
|
||||
ntex-io = "2"
|
||||
ntex-util = "2"
|
||||
ntex-service = "3"
|
||||
ntex-net = "2"
|
||||
|
||||
log = "0.4"
|
||||
|
||||
|
|
|
@ -104,17 +104,16 @@ impl FilterLayer for TlsClientFilter {
|
|||
'outer: loop {
|
||||
if !src.is_empty() {
|
||||
src.split_to(session.writer().write(src)?);
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
while session.wants_write() {
|
||||
match session.write_tls(&mut io) {
|
||||
Ok(0) => continue 'outer,
|
||||
Ok(_) => continue,
|
||||
Err(ref err) if err.kind() == io::ErrorKind::WouldBlock => {
|
||||
break
|
||||
|
||||
loop {
|
||||
match session.write_tls(&mut io) {
|
||||
Ok(0) => continue 'outer,
|
||||
Ok(_) => continue,
|
||||
Err(ref err) if err.kind() == io::ErrorKind::WouldBlock => {
|
||||
break
|
||||
}
|
||||
Err(err) => return Err(err),
|
||||
}
|
||||
Err(err) => return Err(err),
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
|
|
@ -112,17 +112,16 @@ impl FilterLayer for TlsServerFilter {
|
|||
'outer: loop {
|
||||
if !src.is_empty() {
|
||||
src.split_to(session.writer().write(src)?);
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
while session.wants_write() {
|
||||
match session.write_tls(&mut io) {
|
||||
Ok(0) => continue 'outer,
|
||||
Ok(_) => continue,
|
||||
Err(ref err) if err.kind() == io::ErrorKind::WouldBlock => {
|
||||
break
|
||||
|
||||
loop {
|
||||
match session.write_tls(&mut io) {
|
||||
Ok(0) => continue 'outer,
|
||||
Ok(_) => continue,
|
||||
Err(ref err) if err.kind() == io::ErrorKind::WouldBlock => {
|
||||
break
|
||||
}
|
||||
Err(err) => return Err(err),
|
||||
}
|
||||
Err(err) => return Err(err),
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue