mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-30 14:42:25 -05:00
[chore]: Bump github.com/miekg/dns from 1.1.61 to 1.1.62 (#3209)
This commit is contained in:
parent
c28a18b680
commit
c78c3d5ed9
10 changed files with 89 additions and 30 deletions
11
vendor/github.com/miekg/dns/zmsg.go
generated
vendored
11
vendor/github.com/miekg/dns/zmsg.go
generated
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue