mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
replace the logging.Export() method by a Close() method
This commit is contained in:
parent
7fdace490c
commit
7f6eca84da
6 changed files with 66 additions and 55 deletions
|
@ -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()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue