This commit is contained in:
Frank Denis 2019-11-17 21:28:26 +01:00
parent 64d804486d
commit 45cb7b48df

View file

@ -18,61 +18,61 @@ import (
) )
type Proxy struct { type Proxy struct {
userName string userName string
child bool child bool
proxyPublicKey [32]byte proxyPublicKey [32]byte
proxySecretKey [32]byte proxySecretKey [32]byte
ephemeralKeys bool ephemeralKeys bool
questionSizeEstimator QuestionSizeEstimator questionSizeEstimator QuestionSizeEstimator
serversInfo ServersInfo serversInfo ServersInfo
timeout time.Duration timeout time.Duration
certRefreshDelay time.Duration certRefreshDelay time.Duration
certRefreshDelayAfterFailure time.Duration certRefreshDelayAfterFailure time.Duration
certIgnoreTimestamp bool certIgnoreTimestamp bool
mainProto string mainProto string
listenAddresses []string listenAddresses []string
daemonize bool daemonize bool
registeredServers []RegisteredServer registeredServers []RegisteredServer
registeredRelays []RegisteredServer registeredRelays []RegisteredServer
pluginBlockIPv6 bool pluginBlockIPv6 bool
cache bool cache bool
cacheSize int cacheSize int
cacheNegMinTTL uint32 cacheNegMinTTL uint32
cacheNegMaxTTL uint32 cacheNegMaxTTL uint32
cacheMinTTL uint32 cacheMinTTL uint32
cacheMaxTTL uint32 cacheMaxTTL uint32
rejectTTL uint32 rejectTTL uint32
cloakTTL uint32 cloakTTL uint32
queryLogFile string queryLogFile string
queryLogFormat string queryLogFormat string
queryLogIgnoredQtypes []string queryLogIgnoredQtypes []string
nxLogFile string nxLogFile string
nxLogFormat string nxLogFormat string
blockNameFile string blockNameFile string
whitelistNameFile string whitelistNameFile string
blockNameLogFile string blockNameLogFile string
whitelistNameLogFile string whitelistNameLogFile string
blockNameFormat string blockNameFormat string
whitelistNameFormat string whitelistNameFormat string
blockIPFile string blockIPFile string
blockIPLogFile string blockIPLogFile string
blockIPFormat string blockIPFormat string
forwardFile string forwardFile string
cloakFile string cloakFile string
pluginsGlobals PluginsGlobals pluginsGlobals PluginsGlobals
sources []*Source sources []*Source
clientsCount uint32 clientsCount uint32
maxClients uint32 maxClients uint32
xTransport *XTransport xTransport *XTransport
allWeeklyRanges *map[string]WeeklyRanges allWeeklyRanges *map[string]WeeklyRanges
logMaxSize int logMaxSize int
logMaxAge int logMaxAge int
logMaxBackups int logMaxBackups int
blockedQueryResponse string blockedQueryResponse string
queryMeta []string queryMeta []string
routes *map[string][]string routes *map[string][]string
serversWithBrokenQueryPadding []string serversWithBrokenQueryPadding []string
showCerts bool showCerts bool
} }
func (proxy *Proxy) StartProxy() { func (proxy *Proxy) StartProxy() {