mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
don't send path MTU probe packets on a timer (#3423)
This commit is contained in:
parent
de5f08171b
commit
2e98150cd4
5 changed files with 2 additions and 39 deletions
|
@ -1691,11 +1691,7 @@ var _ = Describe("Connection", func() {
|
|||
written := make(chan struct{}, 1)
|
||||
sender.EXPECT().WouldBlock().AnyTimes()
|
||||
sender.EXPECT().Send(gomock.Any()).DoAndReturn(func(p *packetBuffer) { written <- struct{}{} })
|
||||
gomock.InOrder(
|
||||
mtuDiscoverer.EXPECT().NextProbeTime(),
|
||||
mtuDiscoverer.EXPECT().ShouldSendProbe(gomock.Any()).Return(true),
|
||||
mtuDiscoverer.EXPECT().NextProbeTime(),
|
||||
)
|
||||
mtuDiscoverer.EXPECT().ShouldSendProbe(gomock.Any()).Return(true)
|
||||
ping := ackhandler.Frame{Frame: &wire.PingFrame{}}
|
||||
mtuDiscoverer.EXPECT().GetPing().Return(ping, protocol.ByteCount(1234))
|
||||
packer.EXPECT().PackMTUProbePacket(ping, protocol.ByteCount(1234)).Return(getPacket(1), nil)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue