mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-15 12:00:29 +00:00
14 lines
243 B
Go
14 lines
243 B
Go
// +build !darwin
|
|
|
|
package yggdrasil
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
// WARNING: This context is used both by net.Dialer and net.Listen in tcp.go
|
|
|
|
func (iface *tcpInterface) tcpContext(network, address string, c syscall.RawConn) error {
|
|
return nil
|
|
}
|