mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 06:07:36 +03:00
StaleResponseTtl -> StaleResponseTTL
This commit is contained in:
parent
8da1b698ad
commit
efcd392279
1 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ import (
|
||||||
"github.com/miekg/dns"
|
"github.com/miekg/dns"
|
||||||
)
|
)
|
||||||
|
|
||||||
const StaleResponseTtl = 30 * time.Second
|
const StaleResponseTTL = 30 * time.Second
|
||||||
|
|
||||||
type CachedResponse struct {
|
type CachedResponse struct {
|
||||||
expiration time.Time
|
expiration time.Time
|
||||||
|
@ -92,7 +92,7 @@ func (plugin *PluginCache) Eval(pluginsState *PluginsState, msg *dns.Msg) error
|
||||||
synth.Question = msg.Question
|
synth.Question = msg.Question
|
||||||
|
|
||||||
if time.Now().After(expiration) {
|
if time.Now().After(expiration) {
|
||||||
expiration2 := time.Now().Add(StaleResponseTtl)
|
expiration2 := time.Now().Add(StaleResponseTTL)
|
||||||
updateTTL(synth, expiration2)
|
updateTTL(synth, expiration2)
|
||||||
pluginsState.sessionData["stale"] = synth
|
pluginsState.sessionData["stale"] = synth
|
||||||
return nil
|
return nil
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue