
* update all READMEs with notices about the name change * update changelog for 0.24 * bump crate versions to 0.24 * update version notice information * update readmes to back reference trust-dns * rename all crates to hickory counterparts * replace all Trust-DNS references in code and comments with Hickory DNS * rename all Trust-DNS references to Hickory DNS in non-code * rename all trust-dns-resolver references to hickory-resolver * rename all trust-dns-client references to hickory-client * rename all trust-dns-proto references to hickory-proto * rename all trust-dns-server references to hickory-server * rename all trust-dns-compatibility references to hickory-compatability * rename all trust-dns-integration references to hickory-integration * rename all trust-dns-util references to hickory-util * Update MIT licenses to reference Hickory DNS * update all trust-dns references to hickory-dns * update all bluejekyll github references to hickorydns org * Update name in Changelog * make sure hickory-dns logs during tests * add changelogs for recent main additions * fix references to trust-dns and hickory in architecture * update a few trust-dns references in READMEs * fixup some dangling trust_dns references * replace fka with formerly in change log * replace all hickoydns org references to hickory-dns * replace all http links with https * update logos * update hickorydns to hickory-dns for all other org references * fix Notices of Trust-DNS to Hickory in each Readme
45 lines
1009 B
Plaintext
45 lines
1009 B
Plaintext
/*
|
|
Hickory DNS bench setup:
|
|
this is meant to mimic the hickory-server config
|
|
which is in tests/test-data/test_configs/example.toml
|
|
*/
|
|
|
|
controls { /* empty */ };
|
|
|
|
options {
|
|
pid-file "/tmp/named.pid";
|
|
listen-on { 127.0.0.1; };
|
|
listen-on-v6 { none; };
|
|
recursion no;
|
|
};
|
|
|
|
zone "localhost" {
|
|
type primary;
|
|
file "../../../tests/test-data/test_configs/default/localhost.zone";
|
|
};
|
|
|
|
zone "0.0.127.in-addr.arpa" {
|
|
type primary;
|
|
file "../../../tests/test-data/test_configs/default/127.0.0.1.zone";
|
|
};
|
|
|
|
zone "0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa" {
|
|
type primary;
|
|
file "../../../tests/test-data/test_configs/default/ipv6_1.zone";
|
|
};
|
|
|
|
zone "255.in-addr.arpa" {
|
|
type primary;
|
|
file "../../../tests/test-data/test_configs/default/255.zone";
|
|
};
|
|
|
|
zone "0.in-addr.arpa" {
|
|
type primary;
|
|
file "../../../tests/test-data/test_configs/default/0.zone";
|
|
};
|
|
|
|
zone "example.com" {
|
|
type primary;
|
|
file "../../../tests/test-data/test_configs/example.com.zone";
|
|
};
|