mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
split CRYPTO frames when packing retransmissions, if neccessary
This commit is contained in:
parent
d024df7c8e
commit
5bfac02a44
2 changed files with 79 additions and 5 deletions
|
@ -56,10 +56,15 @@ func (q *retransmissionQueue) AddAppData(f wire.Frame) {
|
|||
|
||||
func (q *retransmissionQueue) GetInitialFrame(maxLen protocol.ByteCount) wire.Frame {
|
||||
if len(q.initialCryptoData) > 0 {
|
||||
if f := q.initialCryptoData[0]; f.Length(q.version) <= maxLen {
|
||||
f := q.initialCryptoData[0]
|
||||
newFrame, needsSplit := f.MaybeSplitOffFrame(maxLen, q.version)
|
||||
if newFrame == nil && !needsSplit { // the whole frame fits
|
||||
q.initialCryptoData = q.initialCryptoData[1:]
|
||||
return f
|
||||
}
|
||||
if newFrame != nil { // frame was split. Leave the original frame in the queue.
|
||||
return newFrame
|
||||
}
|
||||
}
|
||||
if len(q.initial) == 0 {
|
||||
return nil
|
||||
|
@ -74,10 +79,15 @@ func (q *retransmissionQueue) GetInitialFrame(maxLen protocol.ByteCount) wire.Fr
|
|||
|
||||
func (q *retransmissionQueue) GetHandshakeFrame(maxLen protocol.ByteCount) wire.Frame {
|
||||
if len(q.handshakeCryptoData) > 0 {
|
||||
if f := q.handshakeCryptoData[0]; f.Length(q.version) <= maxLen {
|
||||
f := q.handshakeCryptoData[0]
|
||||
newFrame, needsSplit := f.MaybeSplitOffFrame(maxLen, q.version)
|
||||
if newFrame == nil && !needsSplit { // the whole frame fits
|
||||
q.handshakeCryptoData = q.handshakeCryptoData[1:]
|
||||
return f
|
||||
}
|
||||
if newFrame != nil { // frame was split. Leave the original frame in the queue.
|
||||
return newFrame
|
||||
}
|
||||
}
|
||||
if len(q.handshake) == 0 {
|
||||
return nil
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue