mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-12-20 14:01:50 +03:00
cf7c12c97b
Squashed commit of the following: commit 770a3f338ecb270fcff7792a4ffe3cf95492d2ae Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Tue Jun 27 20:10:39 2023 +0300 dnssvc: fix test for darwin commit 6564abcc0904784ff3787e1a046d665519a108b3 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Tue Jun 27 19:57:19 2023 +0300 all: fix .gitignore, tests commit 3ff1be0462b3adea81d98b1f65eeb685d2d72030 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Tue Jun 27 19:30:05 2023 +0300 next: add conf example; imp dnssvc
43 lines
1.3 KiB
Go
43 lines
1.3 KiB
Go
package configmgr
|
|
|
|
import (
|
|
"net/netip"
|
|
|
|
"github.com/AdguardTeam/golibs/timeutil"
|
|
)
|
|
|
|
// Configuration Structures
|
|
|
|
// config is the top-level on-disk configuration structure.
|
|
type config struct {
|
|
DNS *dnsConfig `yaml:"dns"`
|
|
HTTP *httpConfig `yaml:"http"`
|
|
// TODO(a.garipov): Use.
|
|
SchemaVersion int `yaml:"schema_version"`
|
|
// TODO(a.garipov): Use.
|
|
DebugPprof bool `yaml:"debug_pprof"`
|
|
Verbose bool `yaml:"verbose"`
|
|
}
|
|
|
|
// dnsConfig is the on-disk DNS configuration.
|
|
//
|
|
// TODO(a.garipov): Validate.
|
|
type dnsConfig struct {
|
|
Addresses []netip.AddrPort `yaml:"addresses"`
|
|
BootstrapDNS []string `yaml:"bootstrap_dns"`
|
|
UpstreamDNS []string `yaml:"upstream_dns"`
|
|
DNS64Prefixes []netip.Prefix `yaml:"dns64_prefixes"`
|
|
UpstreamTimeout timeutil.Duration `yaml:"upstream_timeout"`
|
|
BootstrapPreferIPv6 bool `yaml:"bootstrap_prefer_ipv6"`
|
|
UseDNS64 bool `yaml:"use_dns64"`
|
|
}
|
|
|
|
// httpConfig is the on-disk web API configuration.
|
|
//
|
|
// TODO(a.garipov): Validate.
|
|
type httpConfig struct {
|
|
Addresses []netip.AddrPort `yaml:"addresses"`
|
|
SecureAddresses []netip.AddrPort `yaml:"secure_addresses"`
|
|
Timeout timeutil.Duration `yaml:"timeout"`
|
|
ForceHTTPS bool `yaml:"force_https"`
|
|
}
|