cloudflare / quiche

šŸ„§ Savoury implementation of the QUIC transport protocol and HTTP/3

Home Page:https://docs.quic.tech/quiche/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

`SmallVec` with length 1

larseggert opened this issue Ā· comments

pub frames: Option<SmallVec<[QuicFrame; 1]>>,

This allocates a SmallVec that spills on the heap when the second element is inserted, which is probably much earlier than you want. Suggest bumping this up to 8 or 16 or something (whatever number you think a good bound for the number of frames in most QUIC packets is.)

You might also want to review other uses of SmallVec in quiche.