mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 22:27:37 +03:00
Format
This commit is contained in:
parent
f7630ad8fd
commit
ebe41535ba
2 changed files with 6 additions and 6 deletions
|
@ -90,12 +90,12 @@ func setMaxTTL(msg *dns.Msg, ttl uint32) {
|
|||
}
|
||||
}
|
||||
for _, rr := range msg.Ns {
|
||||
if ttl < rr.Header().Ttl {
|
||||
if ttl < rr.Header().Ttl {
|
||||
rr.Header().Ttl = ttl
|
||||
}
|
||||
}
|
||||
for _, rr := range msg.Extra {
|
||||
if ttl < rr.Header().Ttl {
|
||||
if ttl < rr.Header().Ttl {
|
||||
rr.Header().Ttl = ttl
|
||||
}
|
||||
}
|
||||
|
@ -106,12 +106,12 @@ func updateTTL(msg *dns.Msg, expiration time.Time) {
|
|||
ttl := uint32(time.Until(expiration) / time.Second)
|
||||
|
||||
for _, rr := range msg.Answer {
|
||||
rr.Header().Ttl = ttl
|
||||
rr.Header().Ttl = ttl
|
||||
}
|
||||
for _, rr := range msg.Ns {
|
||||
rr.Header().Ttl = ttl
|
||||
rr.Header().Ttl = ttl
|
||||
}
|
||||
for _, rr := range msg.Extra {
|
||||
rr.Header().Ttl = ttl
|
||||
rr.Header().Ttl = ttl
|
||||
}
|
||||
}
|
||||
|
|
|
@ -70,8 +70,8 @@ func (plugin *PluginCacheResponse) Eval(pluginsState *PluginsState, msg *dns.Msg
|
|||
}
|
||||
}
|
||||
plugin.cachedResponses.cache.Add(cacheKey, cachedResponse)
|
||||
|
||||
updateTTL(msg, cachedResponse.expiration)
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue