mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
simplify the Tracer interface by combining the TracerFor... methods
This commit is contained in:
parent
ece3592544
commit
ee24d3899e
32 changed files with 139 additions and 194 deletions
|
@ -79,12 +79,11 @@ const (
|
|||
|
||||
// A Tracer traces events.
|
||||
type Tracer interface {
|
||||
// TracerForServer requests a new tracer for a connection that was accepted by the server.
|
||||
// ConnectionTracer requests a new tracer for a connection.
|
||||
// The ODCID is the original destination connection ID:
|
||||
// The destination connection ID that the client used on the first Initial packet it sent on this connection.
|
||||
// If nil is returned, tracing will be disabled for this connection.
|
||||
TracerForServer(odcid ConnectionID) ConnectionTracer
|
||||
// TracerForServer requests a new tracer for a connection that was dialed by the client.
|
||||
// If nil is returned, tracing will be disabled for this connection.
|
||||
TracerForClient(odcid ConnectionID) ConnectionTracer
|
||||
TracerForConnection(p Perspective, odcid ConnectionID) ConnectionTracer
|
||||
}
|
||||
|
||||
// A ConnectionTracer records events.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue