mirror of
https://github.com/yggdrasil-network/yggdrasil-go
synced 2024-11-13 00:40:24 +03:00
14 lines
230 B
Go
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
|
|
}
|