mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 21:57:36 +03:00
delay transmission of small packets to wait for new data
fixes #9, fixes #61
This commit is contained in:
parent
c0c7be16e3
commit
ba799cef01
4 changed files with 137 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
package quic
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"errors"
|
||||
"io"
|
||||
"runtime"
|
||||
|
@ -379,6 +380,74 @@ var _ = Describe("Session", func() {
|
|||
session.Run()
|
||||
Expect(session.sendingScheduled).To(Receive())
|
||||
})
|
||||
|
||||
Context("bundling of small packets", func() {
|
||||
It("bundles two small frames into one packet", func() {
|
||||
go session.Run()
|
||||
|
||||
session.QueueStreamFrame(&frames.StreamFrame{
|
||||
StreamID: 5,
|
||||
Data: []byte("foobar1"),
|
||||
})
|
||||
session.QueueStreamFrame(&frames.StreamFrame{
|
||||
StreamID: 5,
|
||||
Data: []byte("foobar2"),
|
||||
})
|
||||
time.Sleep(10 * time.Millisecond)
|
||||
Expect(conn.written).To(HaveLen(1))
|
||||
})
|
||||
|
||||
It("sends out two big frames in two packet", func() {
|
||||
go session.Run()
|
||||
|
||||
session.QueueStreamFrame(&frames.StreamFrame{
|
||||
StreamID: 5,
|
||||
Data: bytes.Repeat([]byte{'e'}, int(protocol.SmallPacketPayloadSizeThreshold+50)),
|
||||
})
|
||||
session.QueueStreamFrame(&frames.StreamFrame{
|
||||
StreamID: 5,
|
||||
Data: bytes.Repeat([]byte{'f'}, int(protocol.SmallPacketPayloadSizeThreshold+50)),
|
||||
})
|
||||
time.Sleep(10 * time.Millisecond)
|
||||
Expect(conn.written).To(HaveLen(2))
|
||||
})
|
||||
|
||||
It("sends out two small frames that are written to long after one another into two packet", func() {
|
||||
go session.Run()
|
||||
|
||||
session.QueueStreamFrame(&frames.StreamFrame{
|
||||
StreamID: 5,
|
||||
Data: []byte("foobar1"),
|
||||
})
|
||||
time.Sleep(10 * protocol.SmallPacketSendDelay)
|
||||
session.QueueStreamFrame(&frames.StreamFrame{
|
||||
StreamID: 5,
|
||||
Data: []byte("foobar2"),
|
||||
})
|
||||
time.Sleep(10 * time.Millisecond)
|
||||
Expect(conn.written).To(HaveLen(2))
|
||||
})
|
||||
|
||||
It("sends a queued ACK frame only once", func() {
|
||||
go session.Run()
|
||||
|
||||
packetNumber := protocol.PacketNumber(0x1337)
|
||||
session.receivedPacketHandler.ReceivedPacket(packetNumber, true)
|
||||
session.QueueStreamFrame(&frames.StreamFrame{
|
||||
StreamID: 5,
|
||||
Data: []byte("foobar1"),
|
||||
})
|
||||
time.Sleep(10 * protocol.SmallPacketSendDelay)
|
||||
session.QueueStreamFrame(&frames.StreamFrame{
|
||||
StreamID: 5,
|
||||
Data: []byte("foobar2"),
|
||||
})
|
||||
time.Sleep(10 * time.Millisecond)
|
||||
Expect(conn.written).To(HaveLen(2))
|
||||
Expect(conn.written[0]).To(ContainSubstring(string([]byte{0x37, 0x13})))
|
||||
Expect(conn.written[1]).ToNot(ContainSubstring(string([]byte{0x37, 0x13})))
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
It("closes when crypto stream errors", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue