[chore]: Bump github.com/miekg/dns from 1.1.61 to 1.1.62 (#3209)

This commit is contained in:
dependabot[bot]
2024-08-19 11:35:08 +00:00
committed by GitHub
parent c28a18b680
commit c78c3d5ed9
10 changed files with 89 additions and 30 deletions

11
vendor/github.com/miekg/dns/zmsg.go generated vendored
View File

@ -706,6 +706,10 @@ func (rr *NULL) pack(msg []byte, off int, compression compressionMap, compress b
return off, nil
}
func (rr *NXNAME) pack(msg []byte, off int, compression compressionMap, compress bool) (off1 int, err error) {
return off, nil
}
func (rr *NXT) pack(msg []byte, off int, compression compressionMap, compress bool) (off1 int, err error) {
off, err = packDomainName(rr.NextDomain, msg, off, compression, false)
if err != nil {
@ -2266,6 +2270,13 @@ func (rr *NULL) unpack(msg []byte, off int) (off1 int, err error) {
return off, nil
}
func (rr *NXNAME) unpack(msg []byte, off int) (off1 int, err error) {
rdStart := off
_ = rdStart
return off, nil
}
func (rr *NXT) unpack(msg []byte, off int) (off1 int, err error) {
rdStart := off
_ = rdStart