don't preallocate the slice for STREAM frames when composing a packet (#4314)

The slice will be allocated when STREAM frames are appended. By not
preallocating it is made sure that the slice is only created in cases
where STREAM frames are actually sent in this packet.
This commit is contained in:
Marten Seemann 2024-02-09 11:53:24 +07:00 committed by GitHub
parent 229ff4fa4c
commit f54a32ec28
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -589,12 +589,11 @@ func (p *packetPacker) composeNextPacket(maxFrameSize protocol.ByteCount, onlyAc
return payload{}
}
pl := payload{streamFrames: make([]ackhandler.StreamFrame, 0, 1)}
hasData := p.framer.HasData()
hasRetransmission := p.retransmissionQueue.HasAppData()
var hasAck bool
var pl payload
if ackAllowed {
if ack := p.acks.GetAckFrame(protocol.Encryption1RTT, !hasRetransmission && !hasData); ack != nil {
pl.ack = ack