mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-29 13:05:46 +00:00
net/flowtrack: add Tuple.String method
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
parent
d6e9fb1df0
commit
ad3fb6125d
@ -12,6 +12,7 @@
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"container/list"
|
"container/list"
|
||||||
|
"fmt"
|
||||||
|
|
||||||
"inet.af/netaddr"
|
"inet.af/netaddr"
|
||||||
)
|
)
|
||||||
@ -22,6 +23,10 @@ type Tuple struct {
|
|||||||
Dst netaddr.IPPort
|
Dst netaddr.IPPort
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (t Tuple) String() string {
|
||||||
|
return fmt.Sprintf("(%v => %v)", t.Src, t.Dst)
|
||||||
|
}
|
||||||
|
|
||||||
// Cache is an LRU cache keyed by Tuple.
|
// Cache is an LRU cache keyed by Tuple.
|
||||||
//
|
//
|
||||||
// The zero value is valid to use.
|
// The zero value is valid to use.
|
||||||
|
Loading…
Reference in New Issue
Block a user