mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f2614f2107
Signed-off-by: Alexander Morozov <lk4d4@docker.com>
17 lines
535 B
Go
17 lines
535 B
Go
// +build !linux
|
|
|
|
package dns
|
|
|
|
import (
|
|
"net"
|
|
"syscall"
|
|
)
|
|
|
|
// These do nothing. See udp_linux.go for an example of how to implement this.
|
|
|
|
// We tried to adhire to some kind of naming scheme.
|
|
|
|
func setUDPSocketOptions4(conn *net.UDPConn) error { return nil }
|
|
func setUDPSocketOptions6(conn *net.UDPConn) error { return nil }
|
|
func getUDPSocketOptions6Only(conn *net.UDPConn) (bool, error) { return false, nil }
|
|
func getUDPSocketName(conn *net.UDPConn) (syscall.Sockaddr, error) { return nil, nil }
|