replace the logging.Export() method by a Close() method

This commit is contained in:
Marten Seemann 2020-06-29 12:14:47 +07:00
parent 7fdace490c
commit 7f6eca84da
6 changed files with 66 additions and 55 deletions

View file

@ -13,7 +13,6 @@ import (
// 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)
@ -34,4 +33,6 @@ type Tracer interface {
SetLossTimer(TimerType, protocol.EncryptionLevel, time.Time)
LossTimerExpired(TimerType, protocol.EncryptionLevel)
LossTimerCanceled()
// Close is called when the connection is closed.
Close()
}