Skip to content

Commit

Permalink
Call invokeReadDataAndCallbacks() when processCallbacksPerPacket is set
Browse files Browse the repository at this point in the history
Summary: Missed this call because processCallbacksAfterNetworkData() used to call it before

Reviewed By: mjoras

Differential Revision: D61891333

fbshipit-source-id: 078e9dce5e5f91f389bdb38b0a589a3256dd873b
  • Loading branch information
kvtsoy authored and facebook-github-bot committed Aug 28, 2024
1 parent a60a3a0 commit 777bdab
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions quic/api/QuicTransportBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1927,6 +1927,7 @@ void QuicTransportBase::onNetworkData(
return;
} else if (conn_->transportSettings.processCallbacksPerPacket) {
processCallbacksAfterNetworkData();
invokeReadDataAndCallbacks();
processedCallbacks = true;
}
}
Expand Down

0 comments on commit 777bdab

Please sign in to comment.