mirror of
https://github.com/miekg/dns.git
synced 2025-09-25 18:11:00 +02:00
App Engine even though is Linux, does not allow referencing the syscall package. Thus I reorganised the udp*.go files a little to make this work. As best I can the functionality is unchanged, and all this continues to compiles on darwin, linux, windows, plan9 and appengine. Namely: * Moved all Linux specific code from udp.go into udp_linux.go (e.g setUDPSocketOptions) * Deleted udp_plan9.go which was almost a copy of udp.go. * Added build tags to stop appengine using the linux build, and instead using the udp_other.go.
16 lines
528 B
Go
16 lines
528 B
Go
// +build !linux appengine
|
|
|
|
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.
|
|
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 }
|