mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
Refactor tls impl (#237)
This commit is contained in:
parent
d460d9c259
commit
24ff5d6909
9 changed files with 114 additions and 97 deletions
|
@ -61,6 +61,10 @@ impl ReadContext {
|
|||
// so we need to wake up read task to read more data
|
||||
// otherwise read task would sleep forever
|
||||
inner.read_task.wake();
|
||||
} else if inner.flags.get().contains(Flags::RD_FORCE_READY) {
|
||||
// in case of "force read" we must wake up dispatch task
|
||||
// if we read any data from source
|
||||
inner.dispatch_task.wake();
|
||||
}
|
||||
|
||||
// while reading, filter wrote some data
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue