From 45cb7b48dfaf77d365ed3e2fdbd7b8b66931c12a Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sun, 17 Nov 2019 21:28:26 +0100 Subject: [PATCH] Format --- dnscrypt-proxy/proxy.go | 110 ++++++++++++++++++++-------------------- 1 file changed, 55 insertions(+), 55 deletions(-) diff --git a/dnscrypt-proxy/proxy.go b/dnscrypt-proxy/proxy.go index d9552da4..69335acd 100644 --- a/dnscrypt-proxy/proxy.go +++ b/dnscrypt-proxy/proxy.go @@ -18,61 +18,61 @@ import ( ) type Proxy struct { - userName string - child bool - proxyPublicKey [32]byte - proxySecretKey [32]byte - ephemeralKeys bool - questionSizeEstimator QuestionSizeEstimator - serversInfo ServersInfo - timeout time.Duration - certRefreshDelay time.Duration - certRefreshDelayAfterFailure time.Duration - certIgnoreTimestamp bool - mainProto string - listenAddresses []string - daemonize bool - registeredServers []RegisteredServer - registeredRelays []RegisteredServer - pluginBlockIPv6 bool - cache bool - cacheSize int - cacheNegMinTTL uint32 - cacheNegMaxTTL uint32 - cacheMinTTL uint32 - cacheMaxTTL uint32 - rejectTTL uint32 - cloakTTL uint32 - queryLogFile string - queryLogFormat string - queryLogIgnoredQtypes []string - nxLogFile string - nxLogFormat string - blockNameFile string - whitelistNameFile string - blockNameLogFile string - whitelistNameLogFile string - blockNameFormat string - whitelistNameFormat string - blockIPFile string - blockIPLogFile string - blockIPFormat string - forwardFile string - cloakFile string - pluginsGlobals PluginsGlobals - sources []*Source - clientsCount uint32 - maxClients uint32 - xTransport *XTransport - allWeeklyRanges *map[string]WeeklyRanges - logMaxSize int - logMaxAge int - logMaxBackups int - blockedQueryResponse string - queryMeta []string - routes *map[string][]string - serversWithBrokenQueryPadding []string - showCerts bool + userName string + child bool + proxyPublicKey [32]byte + proxySecretKey [32]byte + ephemeralKeys bool + questionSizeEstimator QuestionSizeEstimator + serversInfo ServersInfo + timeout time.Duration + certRefreshDelay time.Duration + certRefreshDelayAfterFailure time.Duration + certIgnoreTimestamp bool + mainProto string + listenAddresses []string + daemonize bool + registeredServers []RegisteredServer + registeredRelays []RegisteredServer + pluginBlockIPv6 bool + cache bool + cacheSize int + cacheNegMinTTL uint32 + cacheNegMaxTTL uint32 + cacheMinTTL uint32 + cacheMaxTTL uint32 + rejectTTL uint32 + cloakTTL uint32 + queryLogFile string + queryLogFormat string + queryLogIgnoredQtypes []string + nxLogFile string + nxLogFormat string + blockNameFile string + whitelistNameFile string + blockNameLogFile string + whitelistNameLogFile string + blockNameFormat string + whitelistNameFormat string + blockIPFile string + blockIPLogFile string + blockIPFormat string + forwardFile string + cloakFile string + pluginsGlobals PluginsGlobals + sources []*Source + clientsCount uint32 + maxClients uint32 + xTransport *XTransport + allWeeklyRanges *map[string]WeeklyRanges + logMaxSize int + logMaxAge int + logMaxBackups int + blockedQueryResponse string + queryMeta []string + routes *map[string][]string + serversWithBrokenQueryPadding []string + showCerts bool } func (proxy *Proxy) StartProxy() {