10 lines
263 B
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 }
|