5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-11-15 13:10:28 +00:00
yggdrasil-go/src/yggdrasil/tcp_other.go
2019-03-04 17:52:57 +00:00

14 lines
230 B
Go

// +build !darwin
package yggdrasil
import (
"syscall"
)
// WARNING: This context is used both by net.Dialer and net.Listen in tcp.go
func (t *tcp) tcpContext(network, address string, c syscall.RawConn) error {
return nil
}