Fix funky indentation for CloakedPTR

This commit is contained in:
Frank Denis 2022-02-01 08:18:45 +01:00
parent c10e6e0635
commit 4eeed5816f
1 changed files with 2 additions and 2 deletions

View File

@ -98,7 +98,7 @@ type Config struct {
RefusedCodeInResponses bool `toml:"refused_code_in_responses"`
BlockedQueryResponse string `toml:"blocked_query_response"`
QueryMeta []string `toml:"query_meta"`
CloakedPTR bool `toml:"cloak_ptr"`
CloakedPTR bool `toml:"cloak_ptr"`
AnonymizedDNS AnonymizedDNSConfig `toml:"anonymized_dns"`
DoHClientX509Auth DoHClientX509AuthConfig `toml:"doh_client_x509_auth"`
DoHClientX509AuthLegacy DoHClientX509AuthConfig `toml:"tls_client_auth"`
@ -155,7 +155,7 @@ func newConfig() Config {
AnonymizedDNS: AnonymizedDNSConfig{
DirectCertFallback: true,
},
CloakedPTR: false,
CloakedPTR: false,
}
}