mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-23 16:21:06 +01:00
Wake Future when EOF is received
When a TCP FIN is received, the Future needs to be awakened. Without this, it is not possible to detect a connection closure in end-user applications.
This commit is contained in:
parent
568bffeb58
commit
ffa150ba82
@ -5,6 +5,7 @@
|
||||
### Added
|
||||
|
||||
- Add `header::CLEAR_SITE_DATA` constant.
|
||||
- Fix bug which prevents end-users from discovering when the remote peer has closed its side of the TCP connection.
|
||||
|
||||
### Changed
|
||||
|
||||
|
@ -205,6 +205,7 @@ impl Inner {
|
||||
#[inline]
|
||||
fn feed_eof(&mut self) {
|
||||
self.eof = true;
|
||||
self.wake();
|
||||
}
|
||||
|
||||
#[inline]
|
||||
|
Loading…
Reference in New Issue
Block a user