-
Notifications
You must be signed in to change notification settings - Fork 722
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
apps: more eagerly attempt to write HTTP response stream data in quic…
…he-server Previously, the quiche-server HTTP/3 poll() loop would preference writing HTTP response headers for all received requests ahead of any other data. Once completed, no attempt to use remaining stream capacity was made. This had the effect of deferring writing HTTP response content until the next time the read loop was triggered. Especially noticeable when the path had a high RTT. This change forces an attempt to write on any writable response streams immediately after all response headers have been flushed.
- Loading branch information
Showing
2 changed files
with
29 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters