mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
refactor retransmissionQueue to remove version param from constructor
This commit is contained in:
parent
5c7d120b8f
commit
582edae63d
6 changed files with 44 additions and 48 deletions
|
@ -569,9 +569,9 @@ func (p *packetPacker) maybeGetCryptoPacket(maxPacketSize protocol.ByteCount, en
|
|||
//nolint:exhaustive // 0-RTT packets can't contain any retransmission.s
|
||||
switch encLevel {
|
||||
case protocol.EncryptionInitial:
|
||||
f = p.retransmissionQueue.GetInitialFrame(maxPacketSize)
|
||||
f = p.retransmissionQueue.GetInitialFrame(maxPacketSize, p.version)
|
||||
case protocol.EncryptionHandshake:
|
||||
f = p.retransmissionQueue.GetHandshakeFrame(maxPacketSize)
|
||||
f = p.retransmissionQueue.GetHandshakeFrame(maxPacketSize, p.version)
|
||||
}
|
||||
if f == nil {
|
||||
break
|
||||
|
@ -683,7 +683,7 @@ func (p *packetPacker) composeNextPacket(maxFrameSize protocol.ByteCount, onlyAc
|
|||
if remainingLen < protocol.MinStreamFrameSize {
|
||||
break
|
||||
}
|
||||
f := p.retransmissionQueue.GetAppDataFrame(remainingLen)
|
||||
f := p.retransmissionQueue.GetAppDataFrame(remainingLen, p.version)
|
||||
if f == nil {
|
||||
break
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue