dns/udp_other.go

18 lines
542 B
Go
Raw Normal View History

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