mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
use the actual maximum packet size in the Reno congestion controller
This commit is contained in:
parent
8895a79e30
commit
dd8b21f264
7 changed files with 97 additions and 39 deletions
|
@ -707,6 +707,10 @@ func (h *sentPacketHandler) HasPacingBudget() bool {
|
|||
return h.congestion.HasPacingBudget()
|
||||
}
|
||||
|
||||
func (h *sentPacketHandler) SetMaxDatagramSize(s protocol.ByteCount) {
|
||||
h.congestion.SetMaxDatagramSize(s)
|
||||
}
|
||||
|
||||
func (h *sentPacketHandler) isAmplificationLimited() bool {
|
||||
if h.peerAddressValidated {
|
||||
return false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue