Update deps

This commit is contained in:
Frank Denis 2018-05-16 11:39:59 +02:00
parent 281c2fa7f4
commit 49e5c87f8d
22 changed files with 685 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