mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
fix: try to fix maybeAppLimited 2
This commit is contained in:
parent
cd512ce1c6
commit
09b08fa494
1 changed files with 2 additions and 6 deletions
|
@ -715,13 +715,9 @@ func (b *bbrSender) checkIfFullBandwidthReached(lastPacketSendState *sendTimeSta
|
|||
}
|
||||
|
||||
func (b *bbrSender) maybeAppLimited(bytesInFlight congestion.ByteCount) {
|
||||
congestionWindow := b.GetCongestionWindow()
|
||||
// HACK: consider it app-limited if bytes in flight is less than 90% of the congestion window.
|
||||
if bytesInFlight >= congestionWindow*9/10 ||
|
||||
(b.mode == bbrModeDrain && bytesInFlight > congestionWindow/2) {
|
||||
return
|
||||
if bytesInFlight < b.getTargetCongestionWindow(1) {
|
||||
b.sampler.OnAppLimited()
|
||||
}
|
||||
b.sampler.OnAppLimited()
|
||||
}
|
||||
|
||||
// Transitions from STARTUP to DRAIN and from DRAIN to PROBE_BW if
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue