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 c2a3aea commit c0643f3Copy full SHA for c0643f3
1 file changed
src/quic/application.cc
@@ -540,7 +540,8 @@ void Session::Application::SendPendingData() {
540
// We call Application::ResumeStream directly (not Session::ResumeStream)
541
// to avoid creating a SendPendingDataScope — we're already inside
542
// SendPendingData and re-entering would just hit nwrite=0 again.
543
- if (nwrite == 0 && (stream_data.id >= 0 || !session_->HasPendingDatagrams())) {
+ if (nwrite == 0 &&
544
+ (stream_data.id >= 0 || !session_->HasPendingDatagrams())) {
545
Debug(session_, "Congestion or not our turn to send");
546
if (stream_data.id >= 0 && (stream_data.count > 0 || stream_data.fin)) {
547
ResumeStream(stream_data.id);
0 commit comments