net/flowtrack: add Tuple.String method

Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
Brad Fitzpatrick 2021-01-11 20:17:43 -08:00
parent d6e9fb1df0
commit ad3fb6125d

View File

@ -12,6 +12,7 @@
import (
"container/list"
"fmt"
"inet.af/netaddr"
)
@ -22,6 +23,10 @@ type Tuple struct {
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.
//
// The zero value is valid to use.