mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
split the qlog package into a logging and a qlog package
This commit is contained in:
parent
7c42d7941a
commit
78ba619a0b
25 changed files with 525 additions and 460 deletions
37
logging/interface.go
Normal file
37
logging/interface.go
Normal file
|
@ -0,0 +1,37 @@
|
|||
// Package logging defines a logging interface for quic-go.
|
||||
// This package should not be considered stable
|
||||
package logging
|
||||
|
||||
import (
|
||||
"net"
|
||||
"time"
|
||||
|
||||
"github.com/lucas-clemente/quic-go/internal/congestion"
|
||||
"github.com/lucas-clemente/quic-go/internal/protocol"
|
||||
"github.com/lucas-clemente/quic-go/internal/wire"
|
||||
)
|
||||
|
||||
// A Tracer records events.
|
||||
type Tracer interface {
|
||||
Export() error
|
||||
StartedConnection(local, remote net.Addr, version protocol.VersionNumber, srcConnID, destConnID protocol.ConnectionID)
|
||||
ClosedConnection(CloseReason)
|
||||
SentTransportParameters(*wire.TransportParameters)
|
||||
ReceivedTransportParameters(*wire.TransportParameters)
|
||||
SentPacket(hdr *wire.ExtendedHeader, packetSize protocol.ByteCount, ack *wire.AckFrame, frames []wire.Frame)
|
||||
ReceivedVersionNegotiationPacket(*wire.Header)
|
||||
ReceivedRetry(*wire.Header)
|
||||
ReceivedPacket(hdr *wire.ExtendedHeader, packetSize protocol.ByteCount, frames []wire.Frame)
|
||||
ReceivedStatelessReset(token *[16]byte)
|
||||
BufferedPacket(PacketType)
|
||||
DroppedPacket(PacketType, protocol.ByteCount, PacketDropReason)
|
||||
UpdatedMetrics(rttStats *congestion.RTTStats, cwnd protocol.ByteCount, bytesInFLight protocol.ByteCount, packetsInFlight int)
|
||||
LostPacket(protocol.EncryptionLevel, protocol.PacketNumber, PacketLossReason)
|
||||
UpdatedPTOCount(value uint32)
|
||||
UpdatedKeyFromTLS(protocol.EncryptionLevel, protocol.Perspective)
|
||||
UpdatedKey(generation protocol.KeyPhase, remote bool)
|
||||
DroppedEncryptionLevel(protocol.EncryptionLevel)
|
||||
SetLossTimer(TimerType, protocol.EncryptionLevel, time.Time)
|
||||
LossTimerExpired(TimerType, protocol.EncryptionLevel)
|
||||
LossTimerCanceled()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue