mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
distinguish coalesced and 1-RTT packets when determining ECN mode
This commit is contained in:
parent
8df7624c07
commit
bed8ebbd4c
7 changed files with 59 additions and 46 deletions
|
@ -71,6 +71,11 @@ type coalescedPacket struct {
|
|||
shortHdrPacket *shortHeaderPacket
|
||||
}
|
||||
|
||||
// IsOnlyShortHeaderPacket says if this packet only contains a short header packet (and no long header packets).
|
||||
func (p *coalescedPacket) IsOnlyShortHeaderPacket() bool {
|
||||
return len(p.longHdrPackets) == 0 && p.shortHdrPacket != nil
|
||||
}
|
||||
|
||||
func (p *longHeaderPacket) EncryptionLevel() protocol.EncryptionLevel {
|
||||
//nolint:exhaustive // Will never be called for Retry packets (and they don't have encrypted data).
|
||||
switch p.header.Type {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue