yggdrasil-go/src/yggdrasil/tcp_other.go

14 lines
230 B
Go
Raw Normal View History

2019-01-13 21:08:41 +03:00
// +build !darwin
package yggdrasil
import (
"syscall"
)
// WARNING: This context is used both by net.Dialer and net.Listen in tcp.go
2019-03-04 20:52:57 +03:00
func (t *tcp) tcpContext(network, address string, c syscall.RawConn) error {
2019-01-13 21:08:41 +03:00
return nil
}