a685e3fc98
Vndr has a simpler configuration and allows pointing to forked packages. Additionally other docker projects are now using vndr making vendoring in distribution more consistent. Updates letsencrypt to use fork. No longer uses sub-vendored packages. Signed-off-by: Derek McGowan <derek@mcgstyle.net> (github: dmcgowan)
17 lines
542 B
Go
17 lines
542 B
Go
// +build !linux,!plan9
|
|
|
|
package dns
|
|
|
|
import (
|
|
"net"
|
|
"syscall"
|
|
)
|
|
|
|
// 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 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 }
|
|
func getUDPSocketName(conn *net.UDPConn) (syscall.Sockaddr, error) { return nil, nil }
|