Update deps

This commit is contained in:
Frank Denis 2018-05-19 01:50:26 +02:00
parent 33537be040
commit eff3272b9f
28 changed files with 5026 additions and 296 deletions

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

@ -55,16 +55,6 @@ func (h *RR_Header) Header() *RR_Header { return h }
// Just to implement the RR interface.
func (h *RR_Header) copy() RR { return nil }
func (h *RR_Header) copyHeader() *RR_Header {
r := new(RR_Header)
r.Name = h.Name
r.Rrtype = h.Rrtype
r.Class = h.Class
r.Ttl = h.Ttl
r.Rdlength = h.Rdlength
return r
}
func (h *RR_Header) String() string {
var s string