status-go/vendor/github.com/libp2p/go-tcp-transport/metrics_windows.go

10 lines
263 B
Go

//go:build windows
// +build windows
package tcp
import manet "github.com/multiformats/go-multiaddr/net"
func newTracingConn(c manet.Conn, _ bool) (manet.Conn, error) { return c, nil }
func newTracingListener(l manet.Listener) manet.Listener { return l }