mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
set the packet type for handshake retransmissions
This commit is contained in:
parent
ba00cb9175
commit
8fc573c895
2 changed files with 3 additions and 0 deletions
|
@ -214,6 +214,7 @@ func (p *packetPacker) packHandshakeRetransmission(packet *ackhandler.Packet) (*
|
||||||
p.hasSentPacket = false
|
p.hasSentPacket = false
|
||||||
}
|
}
|
||||||
header := p.getHeader(packet.EncryptionLevel)
|
header := p.getHeader(packet.EncryptionLevel)
|
||||||
|
header.Type = packet.PacketType
|
||||||
var frames []wire.Frame
|
var frames []wire.Frame
|
||||||
if p.version.UsesStopWaitingFrames() { // for gQUIC: pack a STOP_WAITING first
|
if p.version.UsesStopWaitingFrames() { // for gQUIC: pack a STOP_WAITING first
|
||||||
if p.stopWaiting == nil {
|
if p.stopWaiting == nil {
|
||||||
|
|
|
@ -616,12 +616,14 @@ var _ = Describe("Packet packer", func() {
|
||||||
|
|
||||||
It("packs a retransmission for a packet sent with no encryption", func() {
|
It("packs a retransmission for a packet sent with no encryption", func() {
|
||||||
packet := &ackhandler.Packet{
|
packet := &ackhandler.Packet{
|
||||||
|
PacketType: protocol.PacketTypeHandshake,
|
||||||
EncryptionLevel: protocol.EncryptionUnencrypted,
|
EncryptionLevel: protocol.EncryptionUnencrypted,
|
||||||
Frames: []wire.Frame{sf},
|
Frames: []wire.Frame{sf},
|
||||||
}
|
}
|
||||||
p, err := packer.PackRetransmission(packet)
|
p, err := packer.PackRetransmission(packet)
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(p).To(HaveLen(1))
|
Expect(p).To(HaveLen(1))
|
||||||
|
Expect(p[0].header.Type).To(Equal(protocol.PacketTypeHandshake))
|
||||||
Expect(p[0].frames).To(Equal([]wire.Frame{swf, sf}))
|
Expect(p[0].frames).To(Equal([]wire.Frame{swf, sf}))
|
||||||
Expect(p[0].encryptionLevel).To(Equal(protocol.EncryptionUnencrypted))
|
Expect(p[0].encryptionLevel).To(Equal(protocol.EncryptionUnencrypted))
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue