mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
qlog the key phase bit
This commit is contained in:
parent
c75da7965b
commit
93e3873141
3 changed files with 27 additions and 0 deletions
|
@ -22,6 +22,8 @@ type (
|
|||
EncryptionLevel = protocol.EncryptionLevel
|
||||
// The KeyPhase is the key phase of the 1-RTT keys.
|
||||
KeyPhase = protocol.KeyPhase
|
||||
// The KeyPhaseBit is the value of the key phase bit of the 1-RTT packets.
|
||||
KeyPhaseBit = protocol.KeyPhaseBit
|
||||
// The PacketNumber is the packet number of a packet.
|
||||
PacketNumber = protocol.PacketNumber
|
||||
// The Perspective is the role of a QUIC endpoint (client or server).
|
||||
|
@ -53,6 +55,13 @@ type (
|
|||
RTTStats = utils.RTTStats
|
||||
)
|
||||
|
||||
const (
|
||||
// KeyPhaseZero is key phase bit 0
|
||||
KeyPhaseZero KeyPhaseBit = protocol.KeyPhaseZero
|
||||
// KeyPhaseOne is key phase bit 1
|
||||
KeyPhaseOne KeyPhaseBit = protocol.KeyPhaseOne
|
||||
)
|
||||
|
||||
const (
|
||||
// PerspectiveServer is used for a QUIC server
|
||||
PerspectiveServer Perspective = protocol.PerspectiveServer
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue