New miekg/dns to fix a resource leak (not affecting us)

This commit is contained in:
Frank Denis 2021-02-26 10:38:52 +01:00
parent 1ae2281588
commit 09866acdb5
30 changed files with 7929 additions and 41 deletions

View file

@ -72,6 +72,7 @@ A not-so-up-to-date-list-that-may-be-actually-current:
* https://github.com/Luzilla/dnsbl_exporter
* https://github.com/bodgit/tsig
* https://github.com/v2fly/v2ray-core (test only)
* https://kuma.io/
Send pull request if you want to be listed here.

View file

@ -321,6 +321,7 @@ func (srv *Server) ListenAndServe() error {
}
u := l.(*net.UDPConn)
if e := setUDPSocketOptions(u); e != nil {
u.Close()
return e
}
srv.PacketConn = l

View file

@ -3,7 +3,7 @@ package dns
import "fmt"
// Version is current version of this library.
var Version = v{1, 1, 39}
var Version = v{1, 1, 40}
// v holds the version of this library.
type v struct {