├── .gitignore ├── LICENSE ├── README.md ├── _test_data ├── aaaa-query ├── aaaa-response ├── ds-query ├── ds-response ├── dynamic-update ├── edns-query ├── foo.iriscouch.com-query ├── foo.iriscouch.com-response ├── ipv6_ptr-query ├── iriscouch.com-query ├── iriscouch.com-response ├── oreilly.com-query ├── oreilly.com-response ├── ptr-query ├── ptr-response ├── registry.npmjs.org-response ├── srv-query ├── srv-response ├── txt-query ├── txt-response ├── www.company.example-query ├── www.company.example-response ├── www.microsoft.com-query └── www.microsoft.com-response ├── constants.js ├── convenient.js ├── encode.js ├── message.js ├── named.js ├── package.json ├── parse.js ├── server.js ├── test ├── api.js ├── convenience.js ├── message.js ├── print.js └── server.js └── util └── null-server.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/README.md -------------------------------------------------------------------------------- /_test_data/aaaa-query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/aaaa-query -------------------------------------------------------------------------------- /_test_data/aaaa-response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/aaaa-response -------------------------------------------------------------------------------- /_test_data/ds-query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/ds-query -------------------------------------------------------------------------------- /_test_data/ds-response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/ds-response -------------------------------------------------------------------------------- /_test_data/dynamic-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/dynamic-update -------------------------------------------------------------------------------- /_test_data/edns-query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/edns-query -------------------------------------------------------------------------------- /_test_data/foo.iriscouch.com-query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/foo.iriscouch.com-query -------------------------------------------------------------------------------- /_test_data/foo.iriscouch.com-response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/foo.iriscouch.com-response -------------------------------------------------------------------------------- /_test_data/ipv6_ptr-query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/ipv6_ptr-query -------------------------------------------------------------------------------- /_test_data/iriscouch.com-query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/iriscouch.com-query -------------------------------------------------------------------------------- /_test_data/iriscouch.com-response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/iriscouch.com-response -------------------------------------------------------------------------------- /_test_data/oreilly.com-query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/oreilly.com-query -------------------------------------------------------------------------------- /_test_data/oreilly.com-response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/oreilly.com-response -------------------------------------------------------------------------------- /_test_data/ptr-query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/ptr-query -------------------------------------------------------------------------------- /_test_data/ptr-response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/ptr-response -------------------------------------------------------------------------------- /_test_data/registry.npmjs.org-response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/registry.npmjs.org-response -------------------------------------------------------------------------------- /_test_data/srv-query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/srv-query -------------------------------------------------------------------------------- /_test_data/srv-response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/srv-response -------------------------------------------------------------------------------- /_test_data/txt-query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/txt-query -------------------------------------------------------------------------------- /_test_data/txt-response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/txt-response -------------------------------------------------------------------------------- /_test_data/www.company.example-query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/www.company.example-query -------------------------------------------------------------------------------- /_test_data/www.company.example-response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/www.company.example-response -------------------------------------------------------------------------------- /_test_data/www.microsoft.com-query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/www.microsoft.com-query -------------------------------------------------------------------------------- /_test_data/www.microsoft.com-response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/_test_data/www.microsoft.com-response -------------------------------------------------------------------------------- /constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/constants.js -------------------------------------------------------------------------------- /convenient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/convenient.js -------------------------------------------------------------------------------- /encode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/encode.js -------------------------------------------------------------------------------- /message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/message.js -------------------------------------------------------------------------------- /named.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/named.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/package.json -------------------------------------------------------------------------------- /parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/parse.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/server.js -------------------------------------------------------------------------------- /test/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/test/api.js -------------------------------------------------------------------------------- /test/convenience.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/test/convenience.js -------------------------------------------------------------------------------- /test/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/test/message.js -------------------------------------------------------------------------------- /test/print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/test/print.js -------------------------------------------------------------------------------- /test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/test/server.js -------------------------------------------------------------------------------- /util/null-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iriscouch/dnsd/HEAD/util/null-server.js --------------------------------------------------------------------------------