mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
introduce type aliases for internal types in the logging package
This commit is contained in:
parent
d4dc08b208
commit
fea17a671b
2 changed files with 82 additions and 25 deletions
|
@ -11,32 +11,90 @@ import (
|
||||||
"github.com/lucas-clemente/quic-go/internal/wire"
|
"github.com/lucas-clemente/quic-go/internal/wire"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type (
|
||||||
|
// A ByteCount is used to count bytes.
|
||||||
|
ByteCount = protocol.ByteCount
|
||||||
|
// A ConnectionID is a QUIC Connection ID.
|
||||||
|
ConnectionID = protocol.ConnectionID
|
||||||
|
// The EncryptionLevel is the encryption level of a packet.
|
||||||
|
EncryptionLevel = protocol.EncryptionLevel
|
||||||
|
// The KeyPhase is the key phase of the 1-RTT keys.
|
||||||
|
KeyPhase = protocol.KeyPhase
|
||||||
|
// The PacketNumber is the packet number of a packet.
|
||||||
|
PacketNumber = protocol.PacketNumber
|
||||||
|
// The Perspective is the role of a QUIC endpoint (client or server).
|
||||||
|
Perspective = protocol.Perspective
|
||||||
|
// The StreamID is the stream ID.
|
||||||
|
StreamID = protocol.StreamID
|
||||||
|
// The StreamNum is the number of the stream.
|
||||||
|
StreamNum = protocol.StreamNum
|
||||||
|
// The StreamType is the type of the stream (unidirectional or bidirectional).
|
||||||
|
StreamType = protocol.StreamType
|
||||||
|
// The VersionNumber is the QUIC version.
|
||||||
|
VersionNumber = protocol.VersionNumber
|
||||||
|
// The Header is the QUIC packet header, before removing header protection.
|
||||||
|
Header = wire.Header
|
||||||
|
// The ExtendedHeader is the QUIC packet header, after removing header protection.
|
||||||
|
ExtendedHeader = wire.ExtendedHeader
|
||||||
|
// The TransportParameters are QUIC transport parameters.
|
||||||
|
TransportParameters = wire.TransportParameters
|
||||||
|
|
||||||
|
// The RTTStats contain statistics used by the congestion controller.
|
||||||
|
RTTStats = congestion.RTTStats
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
// PerspectiveServer is used for a QUIC server
|
||||||
|
PerspectiveServer Perspective = protocol.PerspectiveServer
|
||||||
|
// PerspectiveClient is used for a QUIC client
|
||||||
|
PerspectiveClient Perspective = protocol.PerspectiveClient
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
// EncryptionInitial is the Initial encryption level
|
||||||
|
EncryptionInitial EncryptionLevel = protocol.EncryptionInitial
|
||||||
|
// EncryptionHandshake is the Handshake encryption level
|
||||||
|
EncryptionHandshake EncryptionLevel = protocol.EncryptionHandshake
|
||||||
|
// Encryption1RTT is the 1-RTT encryption level
|
||||||
|
Encryption1RTT EncryptionLevel = protocol.Encryption1RTT
|
||||||
|
// Encryption0RTT is the 0-RTT encryption level
|
||||||
|
Encryption0RTT EncryptionLevel = protocol.Encryption0RTT
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
// StreamTypeUni is a unidirectional stream
|
||||||
|
StreamTypeUni = protocol.StreamTypeUni
|
||||||
|
// StreamTypeBidi is a bidirectional stream
|
||||||
|
StreamTypeBidi = protocol.StreamTypeBidi
|
||||||
|
)
|
||||||
|
|
||||||
|
// A Tracer traces events.
|
||||||
type Tracer interface {
|
type Tracer interface {
|
||||||
TracerForServer(odcid protocol.ConnectionID) ConnectionTracer
|
TracerForServer(odcid ConnectionID) ConnectionTracer
|
||||||
TracerForClient(odcid protocol.ConnectionID) ConnectionTracer
|
TracerForClient(odcid ConnectionID) ConnectionTracer
|
||||||
}
|
}
|
||||||
|
|
||||||
// A ConnectionTracer records events.
|
// A ConnectionTracer records events.
|
||||||
type ConnectionTracer interface {
|
type ConnectionTracer interface {
|
||||||
StartedConnection(local, remote net.Addr, version protocol.VersionNumber, srcConnID, destConnID protocol.ConnectionID)
|
StartedConnection(local, remote net.Addr, version VersionNumber, srcConnID, destConnID ConnectionID)
|
||||||
ClosedConnection(CloseReason)
|
ClosedConnection(CloseReason)
|
||||||
SentTransportParameters(*wire.TransportParameters)
|
SentTransportParameters(*TransportParameters)
|
||||||
ReceivedTransportParameters(*wire.TransportParameters)
|
ReceivedTransportParameters(*TransportParameters)
|
||||||
SentPacket(hdr *wire.ExtendedHeader, packetSize protocol.ByteCount, ack *wire.AckFrame, frames []wire.Frame)
|
SentPacket(hdr *ExtendedHeader, packetSize ByteCount, ack *wire.AckFrame, frames []wire.Frame)
|
||||||
ReceivedVersionNegotiationPacket(*wire.Header)
|
ReceivedVersionNegotiationPacket(*Header)
|
||||||
ReceivedRetry(*wire.Header)
|
ReceivedRetry(*Header)
|
||||||
ReceivedPacket(hdr *wire.ExtendedHeader, packetSize protocol.ByteCount, frames []wire.Frame)
|
ReceivedPacket(hdr *ExtendedHeader, packetSize ByteCount, frames []wire.Frame)
|
||||||
ReceivedStatelessReset(token *[16]byte)
|
ReceivedStatelessReset(token *[16]byte)
|
||||||
BufferedPacket(PacketType)
|
BufferedPacket(PacketType)
|
||||||
DroppedPacket(PacketType, protocol.ByteCount, PacketDropReason)
|
DroppedPacket(PacketType, ByteCount, PacketDropReason)
|
||||||
UpdatedMetrics(rttStats *congestion.RTTStats, cwnd protocol.ByteCount, bytesInFLight protocol.ByteCount, packetsInFlight int)
|
UpdatedMetrics(rttStats *RTTStats, cwnd ByteCount, bytesInFLight ByteCount, packetsInFlight int)
|
||||||
LostPacket(protocol.EncryptionLevel, protocol.PacketNumber, PacketLossReason)
|
LostPacket(EncryptionLevel, PacketNumber, PacketLossReason)
|
||||||
UpdatedPTOCount(value uint32)
|
UpdatedPTOCount(value uint32)
|
||||||
UpdatedKeyFromTLS(protocol.EncryptionLevel, protocol.Perspective)
|
UpdatedKeyFromTLS(EncryptionLevel, Perspective)
|
||||||
UpdatedKey(generation protocol.KeyPhase, remote bool)
|
UpdatedKey(generation KeyPhase, remote bool)
|
||||||
DroppedEncryptionLevel(protocol.EncryptionLevel)
|
DroppedEncryptionLevel(EncryptionLevel)
|
||||||
SetLossTimer(TimerType, protocol.EncryptionLevel, time.Time)
|
SetLossTimer(TimerType, EncryptionLevel, time.Time)
|
||||||
LossTimerExpired(TimerType, protocol.EncryptionLevel)
|
LossTimerExpired(TimerType, EncryptionLevel)
|
||||||
LossTimerCanceled()
|
LossTimerCanceled()
|
||||||
// Close is called when the connection is closed.
|
// Close is called when the connection is closed.
|
||||||
Close()
|
Close()
|
||||||
|
|
|
@ -2,11 +2,10 @@ package logging
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/lucas-clemente/quic-go/internal/protocol"
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
||||||
"github.com/lucas-clemente/quic-go/internal/wire"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// PacketTypeFromHeader determines the packet type from a *wire.Header.
|
// PacketTypeFromHeader determines the packet type from a *wire.Header.
|
||||||
func PacketTypeFromHeader(hdr *wire.Header) PacketType {
|
func PacketTypeFromHeader(hdr *Header) PacketType {
|
||||||
if !hdr.IsLongHeader {
|
if !hdr.IsLongHeader {
|
||||||
return PacketType1RTT
|
return PacketType1RTT
|
||||||
}
|
}
|
||||||
|
@ -31,13 +30,13 @@ func PacketTypeFromHeader(hdr *wire.Header) PacketType {
|
||||||
type PacketHeader struct {
|
type PacketHeader struct {
|
||||||
PacketType PacketType
|
PacketType PacketType
|
||||||
|
|
||||||
PacketNumber protocol.PacketNumber
|
PacketNumber PacketNumber
|
||||||
PayloadLength protocol.ByteCount
|
PayloadLength ByteCount
|
||||||
// Size of the QUIC packet (QUIC header + payload).
|
// Size of the QUIC packet (QUIC header + payload).
|
||||||
// See https://github.com/quiclog/internet-drafts/issues/40.
|
// See https://github.com/quiclog/internet-drafts/issues/40.
|
||||||
PacketSize protocol.ByteCount
|
PacketSize ByteCount
|
||||||
|
|
||||||
Version protocol.VersionNumber
|
Version VersionNumber
|
||||||
SrcConnectionID protocol.ConnectionID
|
SrcConnectionID ConnectionID
|
||||||
DestConnectionID protocol.ConnectionID
|
DestConnectionID ConnectionID
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue