├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── dnssec.go ├── dnssec_test.go ├── match.go ├── match_test.go ├── metrics.go ├── setup.go ├── setup_test.go ├── testdata ├── unbound.conf.bad └── unbound.conf.good ├── unbound.go └── unbound_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | coverage.txt 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/unbound/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/unbound/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/unbound/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/unbound/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/unbound/HEAD/README.md -------------------------------------------------------------------------------- /dnssec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/unbound/HEAD/dnssec.go -------------------------------------------------------------------------------- /dnssec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/unbound/HEAD/dnssec_test.go -------------------------------------------------------------------------------- /match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/unbound/HEAD/match.go -------------------------------------------------------------------------------- /match_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/unbound/HEAD/match_test.go -------------------------------------------------------------------------------- /metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/unbound/HEAD/metrics.go -------------------------------------------------------------------------------- /setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/unbound/HEAD/setup.go -------------------------------------------------------------------------------- /setup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/unbound/HEAD/setup_test.go -------------------------------------------------------------------------------- /testdata/unbound.conf.bad: -------------------------------------------------------------------------------- 1 | fjdksf-zone: 2 | bad-config? -------------------------------------------------------------------------------- /testdata/unbound.conf.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/unbound/HEAD/testdata/unbound.conf.good -------------------------------------------------------------------------------- /unbound.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/unbound/HEAD/unbound.go -------------------------------------------------------------------------------- /unbound_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/unbound/HEAD/unbound_test.go --------------------------------------------------------------------------------