mirror of
https://github.com/status-im/status-go.git
synced 2025-01-17 02:02:36 +00:00
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 }
|