dnscontrol/vendor/github.com/miekg/dns/udp_other.go

16 lines
528 B
Go
Raw Normal View History

2017-07-14 06:38:04 +08:00
// +build !linux appengine
2016-08-23 08:31:50 +08:00
package dns
import (
"net"
)
// 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.
2017-07-14 06:38:04 +08:00
func setUDPSocketOptions(conn *net.UDPConn) error { return nil }
2016-08-23 08:31:50 +08:00
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 }