mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
57 lines
3.3 KiB
Go
57 lines
3.3 KiB
Go
package logging
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
"time"
|
|
)
|
|
|
|
var (
|
|
// The NullTracer is a Tracer that does nothing.
|
|
// It is useful for embedding. Don't modify this variable!
|
|
NullTracer Tracer = &nullTracer{}
|
|
// The NullConnectionTracer is a ConnectionTracer that does nothing.
|
|
// It is useful for embedding. Don't modify this variable!
|
|
NullConnectionTracer ConnectionTracer = &nullConnectionTracer{}
|
|
)
|
|
|
|
type nullTracer struct{}
|
|
|
|
func (n nullTracer) TracerForConnection(context.Context, Perspective, ConnectionID) ConnectionTracer {
|
|
return NullConnectionTracer
|
|
}
|
|
func (n nullTracer) SentPacket(net.Addr, *Header, ByteCount, []Frame) {}
|
|
func (n nullTracer) DroppedPacket(net.Addr, PacketType, ByteCount, PacketDropReason) {}
|
|
|
|
type nullConnectionTracer struct{}
|
|
|
|
func (n nullConnectionTracer) StartedConnection(local, remote net.Addr, srcConnID, destConnID ConnectionID) {
|
|
}
|
|
|
|
func (n nullConnectionTracer) NegotiatedVersion(chosen VersionNumber, clientVersions, serverVersions []VersionNumber) {
|
|
}
|
|
func (n nullConnectionTracer) ClosedConnection(err error) {}
|
|
func (n nullConnectionTracer) SentTransportParameters(*TransportParameters) {}
|
|
func (n nullConnectionTracer) ReceivedTransportParameters(*TransportParameters) {}
|
|
func (n nullConnectionTracer) RestoredTransportParameters(*TransportParameters) {}
|
|
func (n nullConnectionTracer) SentPacket(*ExtendedHeader, ByteCount, *AckFrame, []Frame) {}
|
|
func (n nullConnectionTracer) ReceivedVersionNegotiationPacket(*Header, []VersionNumber) {}
|
|
func (n nullConnectionTracer) ReceivedRetry(*Header) {}
|
|
func (n nullConnectionTracer) ReceivedPacket(hdr *ExtendedHeader, size ByteCount, frames []Frame) {}
|
|
func (n nullConnectionTracer) BufferedPacket(PacketType) {}
|
|
func (n nullConnectionTracer) DroppedPacket(PacketType, ByteCount, PacketDropReason) {}
|
|
func (n nullConnectionTracer) UpdatedMetrics(rttStats *RTTStats, cwnd, bytesInFlight ByteCount, packetsInFlight int) {
|
|
}
|
|
func (n nullConnectionTracer) AcknowledgedPacket(EncryptionLevel, PacketNumber) {}
|
|
func (n nullConnectionTracer) LostPacket(EncryptionLevel, PacketNumber, PacketLossReason) {}
|
|
func (n nullConnectionTracer) UpdatedCongestionState(CongestionState) {}
|
|
func (n nullConnectionTracer) UpdatedPTOCount(uint32) {}
|
|
func (n nullConnectionTracer) UpdatedKeyFromTLS(EncryptionLevel, Perspective) {}
|
|
func (n nullConnectionTracer) UpdatedKey(keyPhase KeyPhase, remote bool) {}
|
|
func (n nullConnectionTracer) DroppedEncryptionLevel(EncryptionLevel) {}
|
|
func (n nullConnectionTracer) DroppedKey(KeyPhase) {}
|
|
func (n nullConnectionTracer) SetLossTimer(TimerType, EncryptionLevel, time.Time) {}
|
|
func (n nullConnectionTracer) LossTimerExpired(timerType TimerType, level EncryptionLevel) {}
|
|
func (n nullConnectionTracer) LossTimerCanceled() {}
|
|
func (n nullConnectionTracer) Close() {}
|
|
func (n nullConnectionTracer) Debug(name, msg string) {}
|