mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
use time.Duration as delay time type in ackframe
This commit is contained in:
parent
3a18452a93
commit
2878e47317
3 changed files with 9 additions and 18 deletions
|
@ -2,6 +2,7 @@ package quic
|
|||
|
||||
import (
|
||||
"bytes"
|
||||
"time"
|
||||
|
||||
"github.com/lucas-clemente/quic-go/crypto"
|
||||
"github.com/lucas-clemente/quic-go/frames"
|
||||
|
@ -60,20 +61,7 @@ var _ = Describe("Packet unpacker", func() {
|
|||
It("unpacks ack frames", func() {
|
||||
f := &frames.AckFrame{
|
||||
LargestObserved: 1,
|
||||
DelayTime: 1,
|
||||
}
|
||||
err := f.Write(buf, 3, 6)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
setReader(buf.Bytes())
|
||||
packet, err := unpacker.Unpack(hdrBin, hdr, r)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(packet.frames).To(Equal([]frames.Frame{f}))
|
||||
})
|
||||
|
||||
It("unpacks ack frames", func() {
|
||||
f := &frames.AckFrame{
|
||||
LargestObserved: 1,
|
||||
DelayTime: 1,
|
||||
DelayTime: time.Microsecond,
|
||||
}
|
||||
err := f.Write(buf, 3, 6)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue