We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 568bffe commit ffa150bCopy full SHA for ffa150b
actix-http/CHANGES.md
@@ -5,6 +5,7 @@
5
### Added
6
7
- Add `header::CLEAR_SITE_DATA` constant.
8
+- Fix bug which prevents end-users from discovering when the remote peer has closed its side of the TCP connection.
9
10
### Changed
11
actix-http/src/h1/payload.rs
@@ -205,6 +205,7 @@ impl Inner {
205
#[inline]
206
fn feed_eof(&mut self) {
207
self.eof = true;
208
+ self.wake();
209
}
210
211
0 commit comments