Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions client.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,11 @@ func (c *Client) ExchangeWithResponseCheck(ctx context.Context, transport Transp
}
for _, recordList := range [][]dns.RR{response.Answer, response.Ns, response.Extra} {
for _, record := range recordList {
if record.Header().Rrtype == dns.TypeOPT {
// The Ttl field of the OPT record is used to store the extended RCode
// and the edns0 version number.
continue
}
record.Header().Ttl = timeToLive
}
}
Expand Down