mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-06 14:47:35 +03:00
Schedule a prefetch if we got a set or its signature from a backup cache
This is not pretty, and has to be rewritten for the next beta
This commit is contained in:
parent
008d2d9093
commit
43e5689387
2 changed files with 13 additions and 8 deletions
|
@ -99,6 +99,7 @@ func main() {
|
|||
}
|
||||
|
||||
func (app *App) Start(service service.Service) error {
|
||||
dlog.Noticef("Starting dnscrypt-proxy %s", AppVersion)
|
||||
proxy := app.proxy
|
||||
if err := InitPluginsGlobals(&proxy.pluginsGlobals, &proxy); err != nil {
|
||||
dlog.Fatal(err)
|
||||
|
@ -157,7 +158,7 @@ func (proxy *Proxy) StartProxy() {
|
|||
}
|
||||
liveServers, err := proxy.serversInfo.refresh(proxy)
|
||||
if liveServers > 0 {
|
||||
dlog.Noticef("dnscrypt-proxy %s is ready - live servers: %d", AppVersion, liveServers)
|
||||
dlog.Noticef("dnscrypt-proxy is ready - live servers: %d", liveServers)
|
||||
daemon.SdNotify(false, "READY=1")
|
||||
PrefetchSourceURLs(proxy.urlsToPrefetch)
|
||||
} else if err != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue