Add a setMaxTTL() function
Will be useful to interprete HTTP cache headers in DoH
This commit is contained in:
parent
454e1bdfbc
commit
2eed62f1e2
|
@ -73,3 +73,21 @@ func getMinTTL(msg *dns.Msg, minTTL uint32, maxTTL uint32, negCacheMinTTL uint32
|
||||||
}
|
}
|
||||||
return time.Duration(ttl) * time.Second
|
return time.Duration(ttl) * time.Second
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func setMaxTTL(msg *dns.Msg, ttl uint32) {
|
||||||
|
for _, rr := range msg.Answer {
|
||||||
|
if ttl < rr.Header().Ttl {
|
||||||
|
rr.Header().Ttl = ttl
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for _, rr := range msg.Ns {
|
||||||
|
if ttl < rr.Header().Ttl {
|
||||||
|
rr.Header().Ttl = ttl
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for _, rr := range msg.Extra {
|
||||||
|
if ttl < rr.Header().Ttl {
|
||||||
|
rr.Header().Ttl = ttl
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue