dns/udp_other.go

18 lines
535 B
Go
Raw Normal View History

// +build !linux
package dns
import (
"net"
2014-07-11 09:28:39 +00:00
"syscall"
)
2014-07-09 21:23:02 +00:00
// These do nothing. See udp_linux.go for an example of how to implement this.
2014-07-09 19:07:23 +00:00
// 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 }
2014-07-11 09:27:55 +00:00
func getUDPSocketName(conn *net.UDPConn) (syscall.Sockaddr, error) { return nil, nil }