mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
introduce a mtuDiscoverer interface
This commit is contained in:
parent
04642c9e4d
commit
c6ae91a8cf
2 changed files with 29 additions and 21 deletions
|
@ -9,6 +9,12 @@ import (
|
||||||
"github.com/lucas-clemente/quic-go/internal/wire"
|
"github.com/lucas-clemente/quic-go/internal/wire"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type mtuDiscoverer interface {
|
||||||
|
ShouldSendProbe(now time.Time) bool
|
||||||
|
NextProbeTime() time.Time
|
||||||
|
GetPing() (ping ackhandler.Frame, datagramSize protocol.ByteCount)
|
||||||
|
}
|
||||||
|
|
||||||
const (
|
const (
|
||||||
// At some point, we have to stop searching for a higher MTU.
|
// At some point, we have to stop searching for a higher MTU.
|
||||||
// We're happy to send a packet that's 10 bytes smaller than the actual MTU.
|
// We're happy to send a packet that's 10 bytes smaller than the actual MTU.
|
||||||
|
@ -17,7 +23,7 @@ const (
|
||||||
mtuProbeDelay = 5
|
mtuProbeDelay = 5
|
||||||
)
|
)
|
||||||
|
|
||||||
type mtuDiscoverer struct {
|
type mtuFinder struct {
|
||||||
lastProbeTime time.Time
|
lastProbeTime time.Time
|
||||||
probeInFlight bool
|
probeInFlight bool
|
||||||
mtuIncreased func(protocol.ByteCount)
|
mtuIncreased func(protocol.ByteCount)
|
||||||
|
@ -27,8 +33,10 @@ type mtuDiscoverer struct {
|
||||||
max protocol.ByteCount // the maximum value, as advertised by the peer (or our maximum size buffer)
|
max protocol.ByteCount // the maximum value, as advertised by the peer (or our maximum size buffer)
|
||||||
}
|
}
|
||||||
|
|
||||||
func newMTUDiscoverer(rttStats *utils.RTTStats, start, max protocol.ByteCount, mtuIncreased func(protocol.ByteCount)) *mtuDiscoverer {
|
var _ mtuDiscoverer = &mtuFinder{}
|
||||||
return &mtuDiscoverer{
|
|
||||||
|
func newMTUDiscoverer(rttStats *utils.RTTStats, start, max protocol.ByteCount, mtuIncreased func(protocol.ByteCount)) mtuDiscoverer {
|
||||||
|
return &mtuFinder{
|
||||||
current: start,
|
current: start,
|
||||||
rttStats: rttStats,
|
rttStats: rttStats,
|
||||||
lastProbeTime: time.Now(), // to make sure the first probe packet is not sent immediately
|
lastProbeTime: time.Now(), // to make sure the first probe packet is not sent immediately
|
||||||
|
@ -37,40 +45,40 @@ func newMTUDiscoverer(rttStats *utils.RTTStats, start, max protocol.ByteCount, m
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *mtuDiscoverer) done() bool {
|
func (f *mtuFinder) done() bool {
|
||||||
return d.max-d.current <= maxMTUDiff+1
|
return f.max-f.current <= maxMTUDiff+1
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *mtuDiscoverer) ShouldSendProbe(now time.Time) bool {
|
func (f *mtuFinder) ShouldSendProbe(now time.Time) bool {
|
||||||
if d.probeInFlight || d.done() {
|
if f.probeInFlight || f.done() {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
return !now.Before(d.NextProbeTime())
|
return !now.Before(f.NextProbeTime())
|
||||||
}
|
}
|
||||||
|
|
||||||
// NextProbeTime returns the time when the next probe packet should be sent.
|
// NextProbeTime returns the time when the next probe packet should be sent.
|
||||||
// It returns the zero value if no probe packet should be sent.
|
// It returns the zero value if no probe packet should be sent.
|
||||||
func (d *mtuDiscoverer) NextProbeTime() time.Time {
|
func (f *mtuFinder) NextProbeTime() time.Time {
|
||||||
if d.probeInFlight || d.done() {
|
if f.probeInFlight || f.done() {
|
||||||
return time.Time{}
|
return time.Time{}
|
||||||
}
|
}
|
||||||
return d.lastProbeTime.Add(mtuProbeDelay * d.rttStats.SmoothedRTT())
|
return f.lastProbeTime.Add(mtuProbeDelay * f.rttStats.SmoothedRTT())
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *mtuDiscoverer) GetPing() (ackhandler.Frame, protocol.ByteCount) {
|
func (f *mtuFinder) GetPing() (ackhandler.Frame, protocol.ByteCount) {
|
||||||
size := (d.max + d.current) / 2
|
size := (f.max + f.current) / 2
|
||||||
d.lastProbeTime = time.Now()
|
f.lastProbeTime = time.Now()
|
||||||
d.probeInFlight = true
|
f.probeInFlight = true
|
||||||
return ackhandler.Frame{
|
return ackhandler.Frame{
|
||||||
Frame: &wire.PingFrame{},
|
Frame: &wire.PingFrame{},
|
||||||
OnLost: func(wire.Frame) {
|
OnLost: func(wire.Frame) {
|
||||||
d.probeInFlight = false
|
f.probeInFlight = false
|
||||||
d.max = size
|
f.max = size
|
||||||
},
|
},
|
||||||
OnAcked: func(wire.Frame) {
|
OnAcked: func(wire.Frame) {
|
||||||
d.probeInFlight = false
|
f.probeInFlight = false
|
||||||
d.current = size
|
f.current = size
|
||||||
d.mtuIncreased(size)
|
f.mtuIncreased(size)
|
||||||
},
|
},
|
||||||
}, size
|
}, size
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,7 +20,7 @@ var _ = Describe("MTU Discoverer", func() {
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
d *mtuDiscoverer
|
d mtuDiscoverer
|
||||||
rttStats *utils.RTTStats
|
rttStats *utils.RTTStats
|
||||||
now time.Time
|
now time.Time
|
||||||
discoveredMTU protocol.ByteCount
|
discoveredMTU protocol.ByteCount
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue