mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 15:44:05 -08:00
b216e91b61
This reverts commit 590446434f
.
Sadly, there's a problem with truncated messages:
WARN[0684] resolving all.telemetry.pm.prod.bazooka.dd.srv.int.s-cloud.net failed: dns: failed to unpack truncated message source=dns.go:187
We have to revisit the SRV DNS part later.
18 lines
535 B
Go
18 lines
535 B
Go
// +build !linux
|
|
|
|
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 }
|