mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-04 13:07:39 +03:00
Merge branch 'apernet:master' into master
This commit is contained in:
commit
2780dc2766
1 changed files with 6 additions and 2 deletions
|
@ -69,7 +69,7 @@ func (b *BrutalSender) HasPacingBudget(now time.Time) bool {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *BrutalSender) CanSend(bytesInFlight congestion.ByteCount) bool {
|
func (b *BrutalSender) CanSend(bytesInFlight congestion.ByteCount) bool {
|
||||||
return bytesInFlight < b.GetCongestionWindow()
|
return bytesInFlight <= b.GetCongestionWindow()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *BrutalSender) GetCongestionWindow() congestion.ByteCount {
|
func (b *BrutalSender) GetCongestionWindow() congestion.ByteCount {
|
||||||
|
@ -77,7 +77,11 @@ func (b *BrutalSender) GetCongestionWindow() congestion.ByteCount {
|
||||||
if rtt <= 0 {
|
if rtt <= 0 {
|
||||||
return 10240
|
return 10240
|
||||||
}
|
}
|
||||||
return congestion.ByteCount(float64(b.bps) * rtt.Seconds() * congestionWindowMultiplier / b.ackRate)
|
cwnd := congestion.ByteCount(float64(b.bps) * rtt.Seconds() * congestionWindowMultiplier / b.ackRate)
|
||||||
|
if cwnd < b.maxDatagramSize {
|
||||||
|
cwnd = b.maxDatagramSize
|
||||||
|
}
|
||||||
|
return cwnd
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *BrutalSender) OnPacketSent(sentTime time.Time, bytesInFlight congestion.ByteCount,
|
func (b *BrutalSender) OnPacketSent(sentTime time.Time, bytesInFlight congestion.ByteCount,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue