mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-06 14:47:35 +03:00
Start moving things to a custom transport
This commit is contained in:
parent
367f7fd675
commit
24c21d5eb2
3 changed files with 7 additions and 44 deletions
|
@ -45,6 +45,7 @@ func main() {
|
|||
if err := ConfigLoad(&app.proxy, svcFlag, ConfigFileName); err != nil {
|
||||
dlog.Fatal(err)
|
||||
}
|
||||
app.proxy.xTransport = NewXTransport(app.proxy.timeout)
|
||||
dlog.Noticef("Starting dnscrypt-proxy %s", AppVersion)
|
||||
|
||||
if len(*svcFlag) != 0 {
|
||||
|
@ -75,7 +76,6 @@ func main() {
|
|||
|
||||
func (app *App) Start(service service.Service) error {
|
||||
proxy := app.proxy
|
||||
proxy.cachedIPs.cache = make(map[string]string)
|
||||
if err := InitPluginsGlobals(&proxy.pluginsGlobals, &proxy); err != nil {
|
||||
dlog.Fatal(err)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue