dns/udp_other.go

16 lines
528 B
Go
Raw Normal View History

// +build !linux appengine
package dns
import (
"net"
)
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 setUDPSocketOptions(conn *net.UDPConn) error { return nil }
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 }