Massive dependencies update

This commit is contained in:
Frank Denis 2018-05-10 09:56:25 +02:00
parent e6ccf7f3c0
commit 4f4daf41b7
28 changed files with 292 additions and 127 deletions

4
vendor/github.com/miekg/dns/doc.go generated vendored
View file

@ -73,11 +73,11 @@ and port to use for the connection:
Port: 12345,
Zone: "",
}
d := net.Dialer{
c.Dialer := &net.Dialer{
Timeout: 200 * time.Millisecond,
LocalAddr: &laddr,
}
in, rtt, err := c.ExchangeWithDialer(&d, m1, "8.8.8.8:53")
in, rtt, err := c.Exchange(m1, "8.8.8.8:53")
If these "advanced" features are not needed, a simple UDP query can be sent,
with: