2017-10-06 18:34:41 +00:00
|
|
|
// +build !linux appengine
|
2016-02-13 00:50:37 +00: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-10-06 18:34:41 +00:00
|
|
|
func setUDPSocketOptions(conn *net.UDPConn) error { return nil }
|
2016-02-13 00:50:37 +00: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 }
|