├── .github └── workflows │ └── build.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── Package.swift ├── README.md ├── arpa_telnet.h ├── compile_network_ios.sh ├── ifconfig ├── af_inet.c ├── af_inet6.c ├── af_link.c ├── ifclone.c ├── ifconfig.c ├── ifconfig.h └── netinet6 │ ├── ah.h │ ├── esp.h │ ├── in6.h │ ├── in6_var.h │ ├── ipcomp.h │ ├── ipsec.h │ ├── nd6.h │ ├── raw_ip6.h │ └── scope6_var.h ├── ip_var.h ├── ncurses_dll.h ├── netinet_in.h ├── netinet_tcp.h ├── network_ios.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── holzschu.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── holzschu.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── network_ios ├── Info.plist └── network_ios.h ├── sources ├── Makefile.in ├── arpa_telnet.h ├── bind9 │ ├── CHANGES │ ├── COPYRIGHT │ ├── FAQ │ ├── FAQ.xml │ ├── HISTORY │ ├── Makefile │ ├── Makefile.in │ ├── README │ ├── acconfig.h │ ├── aclocal.m4 │ ├── bin │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── check │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── check-tool.c │ │ │ ├── check-tool.h │ │ │ ├── named-checkconf.8 │ │ │ ├── named-checkconf.c │ │ │ ├── named-checkconf.docbook │ │ │ ├── named-checkconf.html │ │ │ ├── named-checkzone.8 │ │ │ ├── named-checkzone.c │ │ │ ├── named-checkzone.docbook │ │ │ ├── named-checkzone.html │ │ │ └── win32 │ │ │ │ ├── checkconf.dsp.in │ │ │ │ ├── checkconf.dsw │ │ │ │ ├── checkconf.mak.in │ │ │ │ ├── checkconf.vcxproj.filters.in │ │ │ │ ├── checkconf.vcxproj.in │ │ │ │ ├── checkconf.vcxproj.user │ │ │ │ ├── checktool.dsp.in │ │ │ │ ├── checktool.dsw │ │ │ │ ├── checktool.vcxproj.filters.in │ │ │ │ ├── checktool.vcxproj.in │ │ │ │ ├── checktool.vcxproj.user │ │ │ │ ├── checkzone.dsp.in │ │ │ │ ├── checkzone.dsw │ │ │ │ ├── checkzone.mak.in │ │ │ │ ├── checkzone.vcxproj.filters.in │ │ │ │ ├── checkzone.vcxproj.in │ │ │ │ └── checkzone.vcxproj.user │ │ ├── confgen │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── ddns-confgen │ │ │ ├── ddns-confgen.8 │ │ │ ├── ddns-confgen.c │ │ │ ├── ddns-confgen.docbook │ │ │ ├── ddns-confgen.html │ │ │ ├── include │ │ │ │ └── confgen │ │ │ │ │ └── os.h │ │ │ ├── keygen.c │ │ │ ├── keygen.h │ │ │ ├── rndc-confgen.8 │ │ │ ├── rndc-confgen.c │ │ │ ├── rndc-confgen.docbook │ │ │ ├── rndc-confgen.html │ │ │ ├── unix │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ └── os.c │ │ │ ├── util.c │ │ │ ├── util.h │ │ │ └── win32 │ │ │ │ ├── confgentool.dsp.in │ │ │ │ ├── confgentool.dsw │ │ │ │ ├── confgentool.vcxproj.filters.in │ │ │ │ ├── confgentool.vcxproj.in │ │ │ │ ├── confgentool.vcxproj.user │ │ │ │ ├── ddnsconfgen.dsp.in │ │ │ │ ├── ddnsconfgen.dsw │ │ │ │ ├── ddnsconfgen.mak.in │ │ │ │ ├── ddnsconfgen.vcxproj.filters.in │ │ │ │ ├── ddnsconfgen.vcxproj.in │ │ │ │ ├── ddnsconfgen.vcxproj.user │ │ │ │ ├── os.c │ │ │ │ ├── rndcconfgen.dsp.in │ │ │ │ ├── rndcconfgen.dsw │ │ │ │ ├── rndcconfgen.mak.in │ │ │ │ ├── rndcconfgen.vcxproj.filters.in │ │ │ │ ├── rndcconfgen.vcxproj.in │ │ │ │ └── rndcconfgen.vcxproj.user │ │ ├── dig │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── dig │ │ │ ├── dig.1 │ │ │ ├── dig.c │ │ │ ├── dig.docbook │ │ │ ├── dig.html │ │ │ ├── dighost.c │ │ │ ├── host │ │ │ ├── host.1 │ │ │ ├── host.c │ │ │ ├── host.docbook │ │ │ ├── host.html │ │ │ ├── include │ │ │ │ └── dig │ │ │ │ │ └── dig.h │ │ │ ├── nslookup │ │ │ ├── nslookup.1 │ │ │ ├── nslookup.c │ │ │ ├── nslookup.docbook │ │ │ ├── nslookup.html │ │ │ └── win32 │ │ │ │ ├── dig.dsp.in │ │ │ │ ├── dig.dsw │ │ │ │ ├── dig.mak.in │ │ │ │ ├── dig.vcxproj.filters.in │ │ │ │ ├── dig.vcxproj.in │ │ │ │ ├── dig.vcxproj.user │ │ │ │ ├── dighost.dsp.in │ │ │ │ ├── dighost.dsw │ │ │ │ ├── dighost.vcxproj.filters.in │ │ │ │ ├── dighost.vcxproj.in │ │ │ │ ├── dighost.vcxproj.user │ │ │ │ ├── host.dsp.in │ │ │ │ ├── host.dsw │ │ │ │ ├── host.mak.in │ │ │ │ ├── host.vcxproj.filters.in │ │ │ │ ├── host.vcxproj.in │ │ │ │ ├── host.vcxproj.user │ │ │ │ ├── nslookup.dsp.in │ │ │ │ ├── nslookup.dsw │ │ │ │ ├── nslookup.mak.in │ │ │ │ ├── nslookup.vcxproj.filters.in │ │ │ │ ├── nslookup.vcxproj.in │ │ │ │ └── nslookup.vcxproj.user │ │ ├── dnssec │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── dnssec-dsfromkey.8 │ │ │ ├── dnssec-dsfromkey.c │ │ │ ├── dnssec-dsfromkey.docbook │ │ │ ├── dnssec-dsfromkey.html │ │ │ ├── dnssec-importkey.8 │ │ │ ├── dnssec-importkey.c │ │ │ ├── dnssec-importkey.docbook │ │ │ ├── dnssec-importkey.html │ │ │ ├── dnssec-keyfromlabel.8 │ │ │ ├── dnssec-keyfromlabel.c │ │ │ ├── dnssec-keyfromlabel.docbook │ │ │ ├── dnssec-keyfromlabel.html │ │ │ ├── dnssec-keygen.8 │ │ │ ├── dnssec-keygen.c │ │ │ ├── dnssec-keygen.docbook │ │ │ ├── dnssec-keygen.html │ │ │ ├── dnssec-revoke.8 │ │ │ ├── dnssec-revoke.c │ │ │ ├── dnssec-revoke.docbook │ │ │ ├── dnssec-revoke.html │ │ │ ├── dnssec-settime.8 │ │ │ ├── dnssec-settime.c │ │ │ ├── dnssec-settime.docbook │ │ │ ├── dnssec-settime.html │ │ │ ├── dnssec-signzone.8 │ │ │ ├── dnssec-signzone.c │ │ │ ├── dnssec-signzone.docbook │ │ │ ├── dnssec-signzone.html │ │ │ ├── dnssec-verify.8 │ │ │ ├── dnssec-verify.c │ │ │ ├── dnssec-verify.docbook │ │ │ ├── dnssec-verify.html │ │ │ ├── dnssectool.c │ │ │ ├── dnssectool.h │ │ │ └── win32 │ │ │ │ ├── dnssectool.dsp.in │ │ │ │ ├── dnssectool.dsw │ │ │ │ ├── dnssectool.vcxproj.filters.in │ │ │ │ ├── dnssectool.vcxproj.in │ │ │ │ ├── dnssectool.vcxproj.user │ │ │ │ ├── dsfromkey.dsp.in │ │ │ │ ├── dsfromkey.dsw │ │ │ │ ├── dsfromkey.mak.in │ │ │ │ ├── dsfromkey.vcxproj.filters.in │ │ │ │ ├── dsfromkey.vcxproj.in │ │ │ │ ├── dsfromkey.vcxproj.user │ │ │ │ ├── importkey.dsp.in │ │ │ │ ├── importkey.dsw │ │ │ │ ├── importkey.mak.in │ │ │ │ ├── importkey.vcxproj.filters.in │ │ │ │ ├── importkey.vcxproj.in │ │ │ │ ├── importkey.vcxproj.user │ │ │ │ ├── keyfromlabel.dsp.in │ │ │ │ ├── keyfromlabel.dsw │ │ │ │ ├── keyfromlabel.mak.in │ │ │ │ ├── keyfromlabel.vcxproj.filters.in │ │ │ │ ├── keyfromlabel.vcxproj.in │ │ │ │ ├── keyfromlabel.vcxproj.user │ │ │ │ ├── keygen.dsp.in │ │ │ │ ├── keygen.dsw │ │ │ │ ├── keygen.mak.in │ │ │ │ ├── keygen.vcxproj.filters.in │ │ │ │ ├── keygen.vcxproj.in │ │ │ │ ├── keygen.vcxproj.user │ │ │ │ ├── revoke.dsp.in │ │ │ │ ├── revoke.dsw │ │ │ │ ├── revoke.mak.in │ │ │ │ ├── revoke.vcxproj.filters.in │ │ │ │ ├── revoke.vcxproj.in │ │ │ │ ├── revoke.vcxproj.user │ │ │ │ ├── settime.dsp.in │ │ │ │ ├── settime.dsw │ │ │ │ ├── settime.mak.in │ │ │ │ ├── settime.vcxproj.filters.in │ │ │ │ ├── settime.vcxproj.in │ │ │ │ ├── settime.vcxproj.user │ │ │ │ ├── signzone.dsp.in │ │ │ │ ├── signzone.dsw │ │ │ │ ├── signzone.mak.in │ │ │ │ ├── signzone.vcxproj.filters.in │ │ │ │ ├── signzone.vcxproj.in │ │ │ │ ├── signzone.vcxproj.user │ │ │ │ ├── verify.dsp.in │ │ │ │ ├── verify.dsw │ │ │ │ ├── verify.mak.in │ │ │ │ ├── verify.vcxproj.filters.in │ │ │ │ ├── verify.vcxproj.in │ │ │ │ └── verify.vcxproj.user │ │ ├── named │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── bind.keys.h │ │ │ ├── bind9.ver3.xsl │ │ │ ├── bind9.ver3.xsl.h │ │ │ ├── bind9.xsl │ │ │ ├── bind9.xsl.h │ │ │ ├── bindkeys.pl │ │ │ ├── builtin.c │ │ │ ├── client.c │ │ │ ├── config.c │ │ │ ├── control.c │ │ │ ├── controlconf.c │ │ │ ├── convertxsl.pl │ │ │ ├── include │ │ │ │ ├── dlz │ │ │ │ │ └── dlz_dlopen_driver.h │ │ │ │ └── named │ │ │ │ │ ├── builtin.h │ │ │ │ │ ├── client.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── control.h │ │ │ │ │ ├── globals.h │ │ │ │ │ ├── interfacemgr.h │ │ │ │ │ ├── listenlist.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── logconf.h │ │ │ │ │ ├── lwaddr.h │ │ │ │ │ ├── lwdclient.h │ │ │ │ │ ├── lwresd.h │ │ │ │ │ ├── lwsearch.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── notify.h │ │ │ │ │ ├── ns_smf_globals.h │ │ │ │ │ ├── query.h │ │ │ │ │ ├── server.h │ │ │ │ │ ├── sortlist.h │ │ │ │ │ ├── statschannel.h │ │ │ │ │ ├── tkeyconf.h │ │ │ │ │ ├── tsigconf.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── update.h │ │ │ │ │ ├── xfrout.h │ │ │ │ │ └── zoneconf.h │ │ │ ├── interfacemgr.c │ │ │ ├── listenlist.c │ │ │ ├── log.c │ │ │ ├── logconf.c │ │ │ ├── lwaddr.c │ │ │ ├── lwdclient.c │ │ │ ├── lwderror.c │ │ │ ├── lwdgabn.c │ │ │ ├── lwdgnba.c │ │ │ ├── lwdgrbn.c │ │ │ ├── lwdnoop.c │ │ │ ├── lwresd.8 │ │ │ ├── lwresd.c │ │ │ ├── lwresd.docbook │ │ │ ├── lwresd.html │ │ │ ├── lwsearch.c │ │ │ ├── main.c │ │ │ ├── named.8 │ │ │ ├── named.conf.5 │ │ │ ├── named.conf.docbook │ │ │ ├── named.conf.html │ │ │ ├── named.docbook │ │ │ ├── named.html │ │ │ ├── notify.c │ │ │ ├── query.c │ │ │ ├── server.c │ │ │ ├── sortlist.c │ │ │ ├── statschannel.c │ │ │ ├── tkeyconf.c │ │ │ ├── tsigconf.c │ │ │ ├── unix │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── dlz_dlopen_driver.c │ │ │ │ ├── include │ │ │ │ │ └── named │ │ │ │ │ │ └── os.h │ │ │ │ └── os.c │ │ │ ├── update.c │ │ │ ├── win32 │ │ │ │ ├── dlz_dlopen_driver.c │ │ │ │ ├── include │ │ │ │ │ └── named │ │ │ │ │ │ ├── ntservice.h │ │ │ │ │ │ └── os.h │ │ │ │ ├── named.dsp.in │ │ │ │ ├── named.dsw │ │ │ │ ├── named.mak.in │ │ │ │ ├── named.vcxproj.filters.in │ │ │ │ ├── named.vcxproj.in │ │ │ │ ├── named.vcxproj.user │ │ │ │ ├── ntservice.c │ │ │ │ └── os.c │ │ │ ├── xfrout.c │ │ │ └── zoneconf.c │ │ ├── nsupdate │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── nsupdate │ │ │ ├── nsupdate.1 │ │ │ ├── nsupdate.c │ │ │ ├── nsupdate.docbook │ │ │ ├── nsupdate.html │ │ │ └── win32 │ │ │ │ ├── nsupdate.dsp.in │ │ │ │ ├── nsupdate.dsw │ │ │ │ ├── nsupdate.mak.in │ │ │ │ ├── nsupdate.vcxproj.filters.in │ │ │ │ ├── nsupdate.vcxproj.in │ │ │ │ └── nsupdate.vcxproj.user │ │ ├── pkcs11 │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── OLD-PKCS11-NOTES │ │ │ ├── include │ │ │ │ ├── pkcs11.h │ │ │ │ ├── pkcs11f.h │ │ │ │ └── pkcs11t.h │ │ │ ├── openssl-0.9.8zc-patch │ │ │ ├── openssl-1.0.0o-patch │ │ │ ├── openssl-1.0.1j-patch │ │ │ ├── pkcs11-destroy.8 │ │ │ ├── pkcs11-destroy.c │ │ │ ├── pkcs11-destroy.docbook │ │ │ ├── pkcs11-destroy.html │ │ │ ├── pkcs11-keygen.8 │ │ │ ├── pkcs11-keygen.c │ │ │ ├── pkcs11-keygen.docbook │ │ │ ├── pkcs11-keygen.html │ │ │ ├── pkcs11-list.8 │ │ │ ├── pkcs11-list.c │ │ │ ├── pkcs11-list.docbook │ │ │ ├── pkcs11-list.html │ │ │ ├── unix │ │ │ │ ├── cryptoki.h │ │ │ │ └── unix.c │ │ │ └── win32 │ │ │ │ ├── cryptoki.h │ │ │ │ ├── pk11destroy.dsp.in │ │ │ │ ├── pk11destroy.dsw │ │ │ │ ├── pk11destroy.mak.in │ │ │ │ ├── pk11destroy.vcxproj.filters.in │ │ │ │ ├── pk11destroy.vcxproj.in │ │ │ │ ├── pk11destroy.vcxproj.user │ │ │ │ ├── pk11keygen.dsp.in │ │ │ │ ├── pk11keygen.dsw │ │ │ │ ├── pk11keygen.mak.in │ │ │ │ ├── pk11keygen.vcxproj.filters.in │ │ │ │ ├── pk11keygen.vcxproj.in │ │ │ │ ├── pk11keygen.vcxproj.user │ │ │ │ ├── pk11list.dsp.in │ │ │ │ ├── pk11list.dsw │ │ │ │ ├── pk11list.mak.in │ │ │ │ ├── pk11list.vcxproj.filters.in │ │ │ │ ├── pk11list.vcxproj.in │ │ │ │ ├── pk11list.vcxproj.user │ │ │ │ └── win32.c │ │ ├── python │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── dnssec-checkds.8 │ │ │ ├── dnssec-checkds.docbook │ │ │ ├── dnssec-checkds.html │ │ │ ├── dnssec-checkds.py │ │ │ ├── dnssec-checkds.py.in │ │ │ ├── dnssec-coverage.8 │ │ │ ├── dnssec-coverage.docbook │ │ │ ├── dnssec-coverage.html │ │ │ ├── dnssec-coverage.py │ │ │ └── dnssec-coverage.py.in │ │ ├── rndc │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── include │ │ │ │ └── rndc │ │ │ │ │ └── os.h │ │ │ ├── rndc.8 │ │ │ ├── rndc.c │ │ │ ├── rndc.conf │ │ │ ├── rndc.conf.5 │ │ │ ├── rndc.conf.docbook │ │ │ ├── rndc.conf.html │ │ │ ├── rndc.docbook │ │ │ ├── rndc.html │ │ │ ├── util.c │ │ │ ├── util.h │ │ │ └── win32 │ │ │ │ ├── rndc.dsp.in │ │ │ │ ├── rndc.dsw │ │ │ │ ├── rndc.mak.in │ │ │ │ ├── rndc.vcxproj.filters.in │ │ │ │ ├── rndc.vcxproj.in │ │ │ │ ├── rndc.vcxproj.user │ │ │ │ ├── rndcutil.dsp.in │ │ │ │ ├── rndcutil.dsw │ │ │ │ ├── rndcutil.vcxproj.filters.in │ │ │ │ ├── rndcutil.vcxproj.in │ │ │ │ └── rndcutil.vcxproj.user │ │ ├── tests │ │ │ ├── Kchild.example.+003+04017.key │ │ │ ├── Kchild.example.+003+04017.private │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── adb_test.c │ │ │ ├── atomic │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── t_atomic.c │ │ │ │ └── win32 │ │ │ │ │ ├── t_atomic.dsp.in │ │ │ │ │ ├── t_atomic.dsw │ │ │ │ │ ├── t_atomic.mak.in │ │ │ │ │ ├── t_atomic.vcxproj.filters.in │ │ │ │ │ ├── t_atomic.vcxproj.in │ │ │ │ │ └── t_atomic.vcxproj.user │ │ │ ├── b8t.mk │ │ │ ├── b9t.mk │ │ │ ├── backtrace_test.c │ │ │ ├── byaddr_test.c │ │ │ ├── byname_test.c │ │ │ ├── cfg_test.c │ │ │ ├── compress_test.c │ │ │ ├── db │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── dns_db_class_1.data │ │ │ │ ├── dns_db_class_data │ │ │ │ ├── dns_db_closeversion_1.data │ │ │ │ ├── dns_db_closeversion_1_data │ │ │ │ ├── dns_db_closeversion_2.data │ │ │ │ ├── dns_db_closeversion_2_data │ │ │ │ ├── dns_db_currentversion.data │ │ │ │ ├── dns_db_currentversion_data │ │ │ │ ├── dns_db_expirenode.data │ │ │ │ ├── dns_db_expirenode_data │ │ │ │ ├── dns_db_find_1.data │ │ │ │ ├── dns_db_find_10.data │ │ │ │ ├── dns_db_find_10_data │ │ │ │ ├── dns_db_find_1_data │ │ │ │ ├── dns_db_find_2.data │ │ │ │ ├── dns_db_find_2_data │ │ │ │ ├── dns_db_find_3.data │ │ │ │ ├── dns_db_find_3_data │ │ │ │ ├── dns_db_find_4.data │ │ │ │ ├── dns_db_find_4_data │ │ │ │ ├── dns_db_find_5.data │ │ │ │ ├── dns_db_find_5_data │ │ │ │ ├── dns_db_find_6.data │ │ │ │ ├── dns_db_find_6_data │ │ │ │ ├── dns_db_find_7.data │ │ │ │ ├── dns_db_find_7_data │ │ │ │ ├── dns_db_find_8.data │ │ │ │ ├── dns_db_find_8_data │ │ │ │ ├── dns_db_find_9.data │ │ │ │ ├── dns_db_find_9_data │ │ │ │ ├── dns_db_findnode_1.data │ │ │ │ ├── dns_db_findnode_1_data │ │ │ │ ├── dns_db_findnode_2.data │ │ │ │ ├── dns_db_findnode_2_data │ │ │ │ ├── dns_db_iscache_1.data │ │ │ │ ├── dns_db_iscache_1_data │ │ │ │ ├── dns_db_iscache_2.data │ │ │ │ ├── dns_db_iscache_2_data │ │ │ │ ├── dns_db_iszone_1.data │ │ │ │ ├── dns_db_iszone_1_data │ │ │ │ ├── dns_db_iszone_2.data │ │ │ │ ├── dns_db_iszone_2_data │ │ │ │ ├── dns_db_load_1.data │ │ │ │ ├── dns_db_load_25.data │ │ │ │ ├── dns_db_load_data │ │ │ │ ├── dns_db_load_soa_not_top │ │ │ │ ├── dns_db_newversion.data │ │ │ │ ├── dns_db_newversion_data │ │ │ │ ├── dns_db_origin_1.data │ │ │ │ ├── dns_db_origin_data │ │ │ │ ├── t_db.c │ │ │ │ └── win32 │ │ │ │ │ ├── t_db.dsp.in │ │ │ │ │ ├── t_db.dsw │ │ │ │ │ ├── t_db.mak.in │ │ │ │ │ ├── t_db.vcxproj.filters.in │ │ │ │ │ ├── t_db.vcxproj.in │ │ │ │ │ └── t_db.vcxproj.user │ │ │ ├── db_test.c │ │ │ ├── dnssec-signzone │ │ │ │ ├── Kexample.com.+005+07065.key │ │ │ │ ├── Kexample.com.+005+07065.private │ │ │ │ ├── Kexample.com.+005+23362.key │ │ │ │ ├── Kexample.com.+005+23362.private │ │ │ │ ├── bogus-ksk.key │ │ │ │ ├── bogus-zsk.key │ │ │ │ ├── run-test.sh │ │ │ │ ├── test1.zone │ │ │ │ ├── test2.zone │ │ │ │ ├── test3.zone │ │ │ │ ├── test4.zone │ │ │ │ ├── test5.zone │ │ │ │ ├── test6.zone │ │ │ │ ├── test7.zone │ │ │ │ └── test8.zone │ │ │ ├── dst │ │ │ │ ├── Kdh.+002+18602.key │ │ │ │ ├── Kdh.+002+18602.key.in │ │ │ │ ├── Kdh.+002+18602.private │ │ │ │ ├── Kdh.+002+18602.private.in │ │ │ │ ├── Kdh.+002+48957.key │ │ │ │ ├── Kdh.+002+48957.key.in │ │ │ │ ├── Kdh.+002+48957.private │ │ │ │ ├── Kdh.+002+48957.private.in │ │ │ │ ├── Ktest.+001+00002.key │ │ │ │ ├── Ktest.+001+00002.key.in │ │ │ │ ├── Ktest.+001+54622.key │ │ │ │ ├── Ktest.+001+54622.key.in │ │ │ │ ├── Ktest.+001+54622.private │ │ │ │ ├── Ktest.+001+54622.private.in │ │ │ │ ├── Ktest.+003+23616.key │ │ │ │ ├── Ktest.+003+23616.key.in │ │ │ │ ├── Ktest.+003+23616.private │ │ │ │ ├── Ktest.+003+23616.private.in │ │ │ │ ├── Ktest.+003+49667.key │ │ │ │ ├── Ktest.+003+49667.key.in │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── dst_2_data │ │ │ │ ├── dst_2_data.in │ │ │ │ ├── dst_test.c │ │ │ │ ├── gsstest.c │ │ │ │ ├── t2_data_1 │ │ │ │ ├── t2_data_1.in │ │ │ │ ├── t2_data_2 │ │ │ │ ├── t2_data_2.in │ │ │ │ ├── t2_dsasig │ │ │ │ ├── t2_dsasig.in │ │ │ │ ├── t2_rsasig │ │ │ │ ├── t2_rsasig.in │ │ │ │ ├── t_dst.c │ │ │ │ └── win32 │ │ │ │ │ ├── REQUIRE_EXTENDED_DIR │ │ │ │ │ ├── t_dst.dsp.in │ │ │ │ │ ├── t_dst.dsw │ │ │ │ │ ├── t_dst.mak.in │ │ │ │ │ ├── t_dst.vcxproj.filters.in │ │ │ │ │ ├── t_dst.vcxproj.in │ │ │ │ │ └── t_dst.vcxproj.user │ │ │ ├── entropy2_test.c │ │ │ ├── entropy_test.c │ │ │ ├── fsaccess_test.c │ │ │ ├── gxba_test.c │ │ │ ├── gxbn_test.c │ │ │ ├── hash_test.c │ │ │ ├── hashes │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── t_hashes.c │ │ │ │ └── win32 │ │ │ │ │ ├── t_hashes.dsp.in │ │ │ │ │ ├── t_hashes.dsw │ │ │ │ │ ├── t_hashes.mak.in │ │ │ │ │ ├── t_hashes.vcxproj.filters.in │ │ │ │ │ ├── t_hashes.vcxproj.in │ │ │ │ │ └── t_hashes.vcxproj.user │ │ │ ├── headerdep_test.sh │ │ │ ├── headerdep_test.sh.in │ │ │ ├── inter_test.c │ │ │ ├── keyboard_test.c │ │ │ ├── lex_test.c │ │ │ ├── lfsr_test.c │ │ │ ├── log_test.c │ │ │ ├── lwres_test.c │ │ │ ├── lwresconf_test.c │ │ │ ├── master │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── dns_master_load_10_data │ │ │ │ ├── dns_master_load_11_data │ │ │ │ ├── dns_master_load_1_data │ │ │ │ ├── dns_master_load_2_data │ │ │ │ ├── dns_master_load_3_data │ │ │ │ ├── dns_master_load_4_data │ │ │ │ ├── dns_master_load_5_data │ │ │ │ ├── dns_master_load_6_data │ │ │ │ ├── dns_master_load_7_data │ │ │ │ ├── dns_master_load_8_data │ │ │ │ ├── dns_master_load_9_data │ │ │ │ ├── master1.data │ │ │ │ ├── master10.data │ │ │ │ ├── master11.data │ │ │ │ ├── master2.data │ │ │ │ ├── master3.data │ │ │ │ ├── master4.data │ │ │ │ ├── master5.data │ │ │ │ ├── master6.data │ │ │ │ ├── master7.data │ │ │ │ ├── master8.data │ │ │ │ ├── master9.data │ │ │ │ ├── t_master.c │ │ │ │ └── win32 │ │ │ │ │ ├── t_master.dsp.in │ │ │ │ │ ├── t_master.dsw │ │ │ │ │ ├── t_master.mak.in │ │ │ │ │ ├── t_master.vcxproj.filters.in │ │ │ │ │ ├── t_master.vcxproj.in │ │ │ │ │ └── t_master.vcxproj.user │ │ │ ├── master_test.c │ │ │ ├── mem │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── t_mem.c │ │ │ │ └── win32 │ │ │ │ │ ├── t_mem.dsp.in │ │ │ │ │ ├── t_mem.dsw │ │ │ │ │ ├── t_mem.mak.in │ │ │ │ │ ├── t_mem.vcxproj.filters.in │ │ │ │ │ ├── t_mem.vcxproj.in │ │ │ │ │ └── t_mem.vcxproj.user │ │ │ ├── mempool_test.c │ │ │ ├── name_test.c │ │ │ ├── named.conf │ │ │ ├── names │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── dns_name_compare_data │ │ │ │ ├── dns_name_countlabels_data │ │ │ │ ├── dns_name_fromregion_data │ │ │ │ ├── dns_name_fromtext_data │ │ │ │ ├── dns_name_fromwire_1_data │ │ │ │ ├── dns_name_fromwire_2_data │ │ │ │ ├── dns_name_fromwire_3_data │ │ │ │ ├── dns_name_fromwire_4_data │ │ │ │ ├── dns_name_fromwire_5_data │ │ │ │ ├── dns_name_fromwire_6_data │ │ │ │ ├── dns_name_fromwire_7_data │ │ │ │ ├── dns_name_fromwire_8_data │ │ │ │ ├── dns_name_fullcompare_data │ │ │ │ ├── dns_name_getlabel_data │ │ │ │ ├── dns_name_getlabelsequence_data │ │ │ │ ├── dns_name_hash_data │ │ │ │ ├── dns_name_isabsolute_data │ │ │ │ ├── dns_name_issubdomain_data │ │ │ │ ├── dns_name_rdatacompare_data │ │ │ │ ├── dns_name_toregion_data │ │ │ │ ├── dns_name_totext_data │ │ │ │ ├── dns_name_towire_1_data │ │ │ │ ├── dns_name_towire_2_data │ │ │ │ ├── t_names.c │ │ │ │ ├── win32 │ │ │ │ │ ├── t_names.dsp.in │ │ │ │ │ ├── t_names.dsw │ │ │ │ │ ├── t_names.mak.in │ │ │ │ │ ├── t_names.vcxproj.filters.in │ │ │ │ │ ├── t_names.vcxproj.in │ │ │ │ │ └── t_names.vcxproj.user │ │ │ │ ├── wire_test1.data │ │ │ │ ├── wire_test2.data │ │ │ │ ├── wire_test3_1.data │ │ │ │ ├── wire_test3_2.data │ │ │ │ ├── wire_test4.data │ │ │ │ ├── wire_test5.data │ │ │ │ ├── wire_test6.data │ │ │ │ ├── wire_test7.data │ │ │ │ └── wire_test8.data │ │ │ ├── ndc.conf │ │ │ ├── ndc.conf-include │ │ │ ├── net │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── driver.c │ │ │ │ ├── driver.h │ │ │ │ ├── netaddr_multicast.c │ │ │ │ ├── sockaddr_multicast.c │ │ │ │ └── testsuite.h │ │ │ ├── nsecify.c │ │ │ ├── printmsg.c │ │ │ ├── printmsg.h │ │ │ ├── ratelimiter_test.c │ │ │ ├── rbt │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── dns_rbt.data │ │ │ │ ├── dns_rbt_addname_1_data │ │ │ │ ├── dns_rbt_addname_2_data │ │ │ │ ├── dns_rbt_bitstring.data │ │ │ │ ├── dns_rbt_create_1_data │ │ │ │ ├── dns_rbt_deletename_1_data │ │ │ │ ├── dns_rbt_deletename_2_data │ │ │ │ ├── dns_rbt_findname_1_data │ │ │ │ ├── dns_rbt_findname_2_data │ │ │ │ ├── dns_rbt_findname_3_data │ │ │ │ ├── dns_rbtnodechain_first_1.data │ │ │ │ ├── dns_rbtnodechain_first_2.data │ │ │ │ ├── dns_rbtnodechain_first_data │ │ │ │ ├── dns_rbtnodechain_init.data │ │ │ │ ├── dns_rbtnodechain_init_data │ │ │ │ ├── dns_rbtnodechain_last_1.data │ │ │ │ ├── dns_rbtnodechain_last_2.data │ │ │ │ ├── dns_rbtnodechain_last_data │ │ │ │ ├── dns_rbtnodechain_next.data │ │ │ │ ├── dns_rbtnodechain_next_data │ │ │ │ ├── dns_rbtnodechain_prev.data │ │ │ │ ├── dns_rbtnodechain_prev_data │ │ │ │ ├── t_rbt.c │ │ │ │ └── win32 │ │ │ │ │ ├── t_rbt.dsp.in │ │ │ │ │ ├── t_rbt.dsw │ │ │ │ │ ├── t_rbt.mak.in │ │ │ │ │ ├── t_rbt.vcxproj.filters.in │ │ │ │ │ ├── t_rbt.vcxproj.in │ │ │ │ │ └── t_rbt.vcxproj.user │ │ │ ├── rbt_test.c │ │ │ ├── rbt_test.out │ │ │ ├── rbt_test.txt │ │ │ ├── rdata_test.c │ │ │ ├── resolv.conf.sample │ │ │ ├── resolver │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── t_resolver.c │ │ │ │ └── win32 │ │ │ │ │ ├── t_resolver.dsp.in │ │ │ │ │ ├── t_resolver.dsw │ │ │ │ │ ├── t_resolver.mak.in │ │ │ │ │ ├── t_resolver.vcxproj.filters.in │ │ │ │ │ ├── t_resolver.vcxproj.in │ │ │ │ │ └── t_resolver.vcxproj.user │ │ │ ├── rwlock_test.c │ │ │ ├── serial_test.c │ │ │ ├── shutdown_test.c │ │ │ ├── sig0_test.c │ │ │ ├── sock_test.c │ │ │ ├── sockaddr │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── t_sockaddr.c │ │ │ │ └── win32 │ │ │ │ │ ├── t_sockaddr.dsp.in │ │ │ │ │ ├── t_sockaddr.dsw │ │ │ │ │ ├── t_sockaddr.mak.in │ │ │ │ │ ├── t_sockaddr.vcxproj.filters.in │ │ │ │ │ ├── t_sockaddr.vcxproj.in │ │ │ │ │ └── t_sockaddr.vcxproj.user │ │ │ ├── startperf │ │ │ │ ├── README │ │ │ │ ├── clean.sh │ │ │ │ ├── makenames.pl │ │ │ │ ├── mkzonefile.pl │ │ │ │ ├── setup.sh │ │ │ │ └── smallzone.db │ │ │ ├── sym_test.c │ │ │ ├── system │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── acl │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── named1.conf │ │ │ │ │ │ ├── named2.conf │ │ │ │ │ │ ├── named3.conf │ │ │ │ │ │ ├── named4.conf │ │ │ │ │ │ └── named5.conf │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── additional │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.args │ │ │ │ │ │ ├── named1.conf │ │ │ │ │ │ ├── named2.conf │ │ │ │ │ │ ├── naptr.db │ │ │ │ │ │ ├── naptr2.db │ │ │ │ │ │ ├── nid.db │ │ │ │ │ │ ├── rt.db │ │ │ │ │ │ └── rt2.db │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── addzone │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── inlineslave.db │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── added.db │ │ │ │ │ │ ├── default.nzf.in │ │ │ │ │ │ ├── inline.db │ │ │ │ │ │ ├── named1.conf │ │ │ │ │ │ ├── named2.conf │ │ │ │ │ │ ├── normal.db │ │ │ │ │ │ └── previous.db │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── allow_query │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── aclallow.db │ │ │ │ │ │ ├── acldisallow.db │ │ │ │ │ │ ├── aclnotallow.db │ │ │ │ │ │ ├── added.db │ │ │ │ │ │ ├── addrallow.db │ │ │ │ │ │ ├── addrdisallow.db │ │ │ │ │ │ ├── addrnotallow.db │ │ │ │ │ │ ├── any.db │ │ │ │ │ │ ├── keyallow.db │ │ │ │ │ │ ├── keydisallow.db │ │ │ │ │ │ ├── named01.conf │ │ │ │ │ │ ├── named02.conf │ │ │ │ │ │ ├── named03.conf │ │ │ │ │ │ ├── named04.conf │ │ │ │ │ │ ├── named05.conf │ │ │ │ │ │ ├── named06.conf │ │ │ │ │ │ ├── named07.conf │ │ │ │ │ │ ├── named08.conf │ │ │ │ │ │ ├── named09.conf │ │ │ │ │ │ ├── named10.conf │ │ │ │ │ │ ├── named11.conf │ │ │ │ │ │ ├── named12.conf │ │ │ │ │ │ ├── named21.conf │ │ │ │ │ │ ├── named22.conf │ │ │ │ │ │ ├── named23.conf │ │ │ │ │ │ ├── named24.conf │ │ │ │ │ │ ├── named25.conf │ │ │ │ │ │ ├── named26.conf │ │ │ │ │ │ ├── named27.conf │ │ │ │ │ │ ├── named28.conf │ │ │ │ │ │ ├── named29.conf │ │ │ │ │ │ ├── named30.conf │ │ │ │ │ │ ├── named31.conf │ │ │ │ │ │ ├── named32.conf │ │ │ │ │ │ ├── named33.conf │ │ │ │ │ │ ├── named34.conf │ │ │ │ │ │ ├── named40.conf │ │ │ │ │ │ ├── named53.conf │ │ │ │ │ │ ├── named54.conf │ │ │ │ │ │ ├── named55.conf │ │ │ │ │ │ ├── named56.conf │ │ │ │ │ │ ├── named57.conf │ │ │ │ │ │ ├── none.db │ │ │ │ │ │ ├── normal.db │ │ │ │ │ │ └── previous.db │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── ans.pl │ │ │ │ ├── autosign │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── keygen.sh │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db.in │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── Xbar.+005+30676.key │ │ │ │ │ │ ├── Xbar.+005+30676.private │ │ │ │ │ │ ├── Xbar.+005+30804.key │ │ │ │ │ │ ├── Xbar.+005+30804.private │ │ │ │ │ │ ├── bar.db.in │ │ │ │ │ │ ├── child.nsec3.example.db │ │ │ │ │ │ ├── child.optout.example.db │ │ │ │ │ │ ├── dst.example.db.in │ │ │ │ │ │ ├── example.db.in │ │ │ │ │ │ ├── insecure.secure.example.db │ │ │ │ │ │ ├── keygen.sh │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── private.secure.example.db.in │ │ │ │ │ ├── ns3 │ │ │ │ │ │ ├── autonsec3.example.db.in │ │ │ │ │ │ ├── delay.example.db │ │ │ │ │ │ ├── inaczsk.example.db.in │ │ │ │ │ │ ├── insecure.example.db │ │ │ │ │ │ ├── keygen.sh │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── nozsk.example.db.in │ │ │ │ │ │ ├── nsec.example.db.in │ │ │ │ │ │ ├── nsec3-to-nsec.example.db.in │ │ │ │ │ │ ├── nsec3.example.db.in │ │ │ │ │ │ ├── nsec3.nsec3.example.db.in │ │ │ │ │ │ ├── nsec3.optout.example.db.in │ │ │ │ │ │ ├── oldsigs.example.db.in │ │ │ │ │ │ ├── optout.example.db.in │ │ │ │ │ │ ├── optout.nsec3.example.db.in │ │ │ │ │ │ ├── optout.optout.example.db.in │ │ │ │ │ │ ├── rsasha256.example.db.in │ │ │ │ │ │ ├── rsasha512.example.db.in │ │ │ │ │ │ ├── secure-to-insecure.example.db.in │ │ │ │ │ │ ├── secure-to-insecure2.example.db.in │ │ │ │ │ │ ├── secure.example.db.in │ │ │ │ │ │ ├── secure.nsec3.example.db.in │ │ │ │ │ │ ├── secure.optout.example.db.in │ │ │ │ │ │ ├── ttl1.example.db.in │ │ │ │ │ │ ├── ttl2.example.db.in │ │ │ │ │ │ ├── ttl3.example.db.in │ │ │ │ │ │ └── ttl4.example.db.in │ │ │ │ │ ├── ns4 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns5 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── builtin │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── gethostname.c │ │ │ │ │ ├── ns1 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns2 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns3 │ │ │ │ │ │ └── named.conf │ │ │ │ │ └── tests.sh │ │ │ │ ├── cacheclean │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── dig.batch │ │ │ │ │ ├── knowngood.dig.out │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ ├── flushtest.db │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns2 │ │ │ │ │ │ └── named.conf │ │ │ │ │ └── tests.sh │ │ │ │ ├── case │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns2 │ │ │ │ │ │ └── named.conf │ │ │ │ │ └── tests.sh │ │ │ │ ├── checkconf │ │ │ │ │ ├── altdb.conf │ │ │ │ │ ├── bad-also-notify.conf │ │ │ │ │ ├── bad-dnssec.conf │ │ │ │ │ ├── bad-hint.conf │ │ │ │ │ ├── bad-inline-slave.conf │ │ │ │ │ ├── bad-many.conf │ │ │ │ │ ├── bad-master-request-ixfr.conf │ │ │ │ │ ├── bad-noddns.conf │ │ │ │ │ ├── bad-sharedwritable1.conf │ │ │ │ │ ├── bad-sharedwritable2.conf │ │ │ │ │ ├── bad-tsig.conf │ │ │ │ │ ├── check-dup-records-fail.conf │ │ │ │ │ ├── check-dup-records.db │ │ │ │ │ ├── check-mx-cname-fail.conf │ │ │ │ │ ├── check-mx-cname.db │ │ │ │ │ ├── check-mx-fail.conf │ │ │ │ │ ├── check-mx.db │ │ │ │ │ ├── check-names-fail.conf │ │ │ │ │ ├── check-names.db │ │ │ │ │ ├── check-srv-cname-fail.conf │ │ │ │ │ ├── check-srv-cname.db │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── dnssec.1 │ │ │ │ │ ├── dnssec.2 │ │ │ │ │ ├── dnssec.3 │ │ │ │ │ ├── good.conf │ │ │ │ │ ├── hint-nofile.conf │ │ │ │ │ ├── inline-bad.conf │ │ │ │ │ ├── inline-good.conf │ │ │ │ │ ├── inline-no.conf │ │ │ │ │ ├── notify.conf │ │ │ │ │ ├── tests.sh │ │ │ │ │ └── warn-keydir.conf │ │ │ │ ├── checkds │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── dig.pl │ │ │ │ │ ├── dig.sh │ │ │ │ │ ├── missing.example.dlv.example.dlv.db │ │ │ │ │ ├── missing.example.dnskey.db │ │ │ │ │ ├── missing.example.ds.db │ │ │ │ │ ├── none.example.dlv.example.dlv.db │ │ │ │ │ ├── none.example.dnskey.db │ │ │ │ │ ├── none.example.ds.db │ │ │ │ │ ├── ok.example.dlv.example.dlv.db │ │ │ │ │ ├── ok.example.dnskey.db │ │ │ │ │ ├── ok.example.ds.db │ │ │ │ │ ├── setup.sh │ │ │ │ │ ├── tests.sh │ │ │ │ │ ├── wrong.example.dlv.example.dlv.db │ │ │ │ │ ├── wrong.example.dnskey.db │ │ │ │ │ └── wrong.example.ds.db │ │ │ │ ├── checknames │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── fail.example.db.in │ │ │ │ │ │ ├── fail.update.db.in │ │ │ │ │ │ ├── ignore.example.db.in │ │ │ │ │ │ ├── ignore.update.db.in │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── root.db │ │ │ │ │ │ ├── warn.example.db.in │ │ │ │ │ │ └── warn.update.db.in │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.hints │ │ │ │ │ ├── ns3 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.hints │ │ │ │ │ ├── ns4 │ │ │ │ │ │ ├── master-ignore.update.db.in │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.hints │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── checkzone │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── tests.sh │ │ │ │ │ └── zones │ │ │ │ │ │ ├── bad-nsec3-padded.db │ │ │ │ │ │ ├── bad-nsec3owner-padded.db │ │ │ │ │ │ ├── bad1.db │ │ │ │ │ │ ├── bad2.db │ │ │ │ │ │ ├── bad3.db │ │ │ │ │ │ ├── bad4.db │ │ │ │ │ │ ├── badttl.db │ │ │ │ │ │ ├── good-nsec3-nopadhash.db │ │ │ │ │ │ ├── good1.db │ │ │ │ │ │ ├── inherit.db │ │ │ │ │ │ ├── nowarn.inherited.owner.db │ │ │ │ │ │ ├── spf.db │ │ │ │ │ │ ├── warn.inherit.origin.db │ │ │ │ │ │ └── warn.inherited.owner.db │ │ │ │ ├── cleanall.sh │ │ │ │ ├── cleanpkcs11.sh │ │ │ │ ├── common │ │ │ │ │ ├── controls.conf │ │ │ │ │ ├── rndc.conf │ │ │ │ │ ├── rndc.key │ │ │ │ │ └── root.hint │ │ │ │ ├── conf.sh │ │ │ │ ├── conf.sh.in │ │ │ │ ├── coverage │ │ │ │ │ ├── 01-ksk-inactive │ │ │ │ │ │ ├── README │ │ │ │ │ │ └── expect │ │ │ │ │ ├── 02-zsk-inactive │ │ │ │ │ │ ├── README │ │ │ │ │ │ └── expect │ │ │ │ │ ├── 03-ksk-unpublished │ │ │ │ │ │ ├── README │ │ │ │ │ │ └── expect │ │ │ │ │ ├── 04-zsk-unpublished │ │ │ │ │ │ ├── README │ │ │ │ │ │ └── expect │ │ │ │ │ ├── 05-ksk-unpub-active │ │ │ │ │ │ ├── README │ │ │ │ │ │ └── expect │ │ │ │ │ ├── 06-zsk-unpub-active │ │ │ │ │ │ ├── README │ │ │ │ │ │ └── expect │ │ │ │ │ ├── 07-ksk-ttl │ │ │ │ │ │ ├── README │ │ │ │ │ │ └── expect │ │ │ │ │ ├── 08-zsk-ttl │ │ │ │ │ │ ├── README │ │ │ │ │ │ └── expect │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── database │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf1 │ │ │ │ │ │ └── named.conf2 │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── dialup │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── hint.db │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns3 │ │ │ │ │ │ ├── hint.db │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── digcomp.pl │ │ │ │ ├── dlv │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── root.db.in │ │ │ │ │ │ ├── rootservers.utld.db │ │ │ │ │ │ └── sign.sh │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── druz.db.in │ │ │ │ │ │ ├── hints │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── sign.sh │ │ │ │ │ │ └── utld.db │ │ │ │ │ ├── ns3 │ │ │ │ │ │ ├── child.db.in │ │ │ │ │ │ ├── dlv.db.in │ │ │ │ │ │ ├── hints │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── sign.sh │ │ │ │ │ ├── ns4 │ │ │ │ │ │ ├── child.db │ │ │ │ │ │ ├── hints │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns5 │ │ │ │ │ │ ├── hints │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── rndc.conf │ │ │ │ │ ├── ns6 │ │ │ │ │ │ ├── child.db.in │ │ │ │ │ │ ├── hints │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── sign.sh │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── dlvauto │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── dlv.isc.org.db.in │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── root.db.in │ │ │ │ │ │ └── sign.sh │ │ │ │ │ ├── ns2 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── dlz │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── dns-root │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ │ ├── dns.d │ │ │ │ │ │ │ │ └── @ │ │ │ │ │ │ │ │ │ ├── DNAME=10=example.net.= │ │ │ │ │ │ │ │ │ ├── NS=10=example.com.= │ │ │ │ │ │ │ │ │ └── SOA=10=ns.example.com.=root.example.com.=2010062900=0=0=0=10= │ │ │ │ │ │ │ │ └── xfr.d │ │ │ │ │ │ │ │ └── 10.53.0.1 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── prereq.sh.in │ │ │ │ │ └── tests.sh │ │ │ │ ├── dlzexternal │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── dlopen.c │ │ │ │ │ ├── driver.c │ │ │ │ │ ├── driver.h │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── named.conf.in │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── dname │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns4 │ │ │ │ │ │ └── named.conf │ │ │ │ │ └── tests.sh │ │ │ │ ├── dns64 │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── conf │ │ │ │ │ │ ├── bad1.conf │ │ │ │ │ │ ├── bad2.conf │ │ │ │ │ │ ├── bad3.conf │ │ │ │ │ │ ├── bad4.conf │ │ │ │ │ │ ├── bad5.conf │ │ │ │ │ │ ├── bad6.conf │ │ │ │ │ │ ├── bad7.conf │ │ │ │ │ │ ├── bad8.conf │ │ │ │ │ │ ├── bad9.conf │ │ │ │ │ │ ├── good1.conf │ │ │ │ │ │ ├── good2.conf │ │ │ │ │ │ ├── good3.conf │ │ │ │ │ │ ├── good4.conf │ │ │ │ │ │ └── good5.conf │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── root.db │ │ │ │ │ │ └── sign.sh │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── rpz.db │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── dnssec │ │ │ │ │ ├── README │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── dnssec_update_test.pl │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── root.db.in │ │ │ │ │ │ └── sign.sh │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── algroll.db.in │ │ │ │ │ │ ├── badparam.db.in │ │ │ │ │ │ ├── child.nsec3.example.db │ │ │ │ │ │ ├── child.optout.example.db │ │ │ │ │ │ ├── dlv.db.in │ │ │ │ │ │ ├── dst.example.db.in │ │ │ │ │ │ ├── example.db.in │ │ │ │ │ │ ├── in-addr.arpa.db.in │ │ │ │ │ │ ├── insecure.secure.example.db │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── private.secure.example.db.in │ │ │ │ │ │ ├── rfc2335.example.db │ │ │ │ │ │ ├── sign.sh │ │ │ │ │ │ └── single-nsec3.db.in │ │ │ │ │ ├── ns3 │ │ │ │ │ │ ├── auto-nsec.example.db.in │ │ │ │ │ │ ├── auto-nsec3.example.db.in │ │ │ │ │ │ ├── bogus.example.db.in │ │ │ │ │ │ ├── dnskey-nsec3-unknown.example.db.in │ │ │ │ │ │ ├── dnskey-unknown.example.db.in │ │ │ │ │ │ ├── dynamic.example.db.in │ │ │ │ │ │ ├── expired.example.db.in │ │ │ │ │ │ ├── expiring.example.db.in │ │ │ │ │ │ ├── future.example.db.in │ │ │ │ │ │ ├── inline.example.db │ │ │ │ │ │ ├── insecure.below-cname.example.db │ │ │ │ │ │ ├── insecure.example.db │ │ │ │ │ │ ├── insecure.nsec3.example.db │ │ │ │ │ │ ├── insecure.optout.example.db │ │ │ │ │ │ ├── keyless.example.db.in │ │ │ │ │ │ ├── kskonly.example.db.in │ │ │ │ │ │ ├── lower.example.db.in │ │ │ │ │ │ ├── multiple.example.db.in │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── nosign.example.db.in │ │ │ │ │ │ ├── nsec3-unknown.example.db.in │ │ │ │ │ │ ├── nsec3.example.db.in │ │ │ │ │ │ ├── nsec3.nsec3.example.db.in │ │ │ │ │ │ ├── nsec3.optout.example.db.in │ │ │ │ │ │ ├── optout-unknown.example.db.in │ │ │ │ │ │ ├── optout.example.db.in │ │ │ │ │ │ ├── optout.nsec3.example.db.in │ │ │ │ │ │ ├── optout.optout.example.db.in │ │ │ │ │ │ ├── publish-inactive.example.db.in │ │ │ │ │ │ ├── rsasha256.example.db.in │ │ │ │ │ │ ├── rsasha512.example.db.in │ │ │ │ │ │ ├── secure.below-cname.example.db.in │ │ │ │ │ │ ├── secure.example.db.in │ │ │ │ │ │ ├── secure.nsec3.example.db.in │ │ │ │ │ │ ├── secure.optout.example.db.in │ │ │ │ │ │ ├── siginterval.example.db.in │ │ │ │ │ │ ├── siginterval1.conf │ │ │ │ │ │ ├── siginterval2.conf │ │ │ │ │ │ ├── sign.sh │ │ │ │ │ │ ├── split-dnssec.example.db.in │ │ │ │ │ │ ├── split-smart.example.db.in │ │ │ │ │ │ ├── ttlpatch.example.db.in │ │ │ │ │ │ ├── update-nsec3.example.db.in │ │ │ │ │ │ └── upper.example.db.in │ │ │ │ │ ├── ns4 │ │ │ │ │ │ ├── named1.conf │ │ │ │ │ │ ├── named2.conf │ │ │ │ │ │ ├── named3.conf │ │ │ │ │ │ └── named4.conf │ │ │ │ │ ├── ns5 │ │ │ │ │ │ ├── named1.conf │ │ │ │ │ │ ├── named2.conf │ │ │ │ │ │ ├── sign.sh │ │ │ │ │ │ └── trusted.conf.bad │ │ │ │ │ ├── ns6 │ │ │ │ │ │ ├── named.args │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── optout-tld.db.in │ │ │ │ │ │ └── sign.sh │ │ │ │ │ ├── ns7 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── named.nosoa │ │ │ │ │ │ ├── nosoa.secure.example.db │ │ │ │ │ │ ├── sign.sh │ │ │ │ │ │ └── split-rrsig.db.in │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ ├── signer │ │ │ │ │ │ └── example.db.in │ │ │ │ │ └── tests.sh │ │ │ │ ├── dsdigest │ │ │ │ │ └── prereq.sh │ │ │ │ ├── ecdsa │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── root.db.in │ │ │ │ │ │ └── sign.sh │ │ │ │ │ ├── ns2 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── emptyzones │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── empty.db │ │ │ │ │ │ ├── named1.conf │ │ │ │ │ │ ├── named2.conf │ │ │ │ │ │ ├── rfc1918.zones │ │ │ │ │ │ └── root.hint │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── filter-aaaa │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── conf │ │ │ │ │ │ ├── bad1.conf │ │ │ │ │ │ ├── bad2.conf │ │ │ │ │ │ ├── bad3.conf │ │ │ │ │ │ ├── bad4.conf │ │ │ │ │ │ ├── bad5.conf │ │ │ │ │ │ ├── bad6.conf │ │ │ │ │ │ ├── good1.conf │ │ │ │ │ │ ├── good2.conf │ │ │ │ │ │ ├── good3.conf │ │ │ │ │ │ ├── good4.conf │ │ │ │ │ │ ├── good5.conf │ │ │ │ │ │ ├── good6.conf │ │ │ │ │ │ ├── good7.conf │ │ │ │ │ │ └── good8.conf │ │ │ │ │ ├── filter-aaaa.c │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── root.db │ │ │ │ │ │ ├── sign.sh │ │ │ │ │ │ ├── signed.db.in │ │ │ │ │ │ ├── signed.db.presigned │ │ │ │ │ │ └── unsigned.db │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── hints │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns3 │ │ │ │ │ │ ├── hints │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns4 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── root.db │ │ │ │ │ │ ├── sign.sh │ │ │ │ │ │ ├── signed.db.in │ │ │ │ │ │ ├── signed.db.presigned │ │ │ │ │ │ └── unsigned.db │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── formerr │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── formerr.pl │ │ │ │ │ ├── nametoolong │ │ │ │ │ ├── noquestions │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ ├── tests.sh │ │ │ │ │ └── twoquestions │ │ │ │ ├── forward │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ ├── ns3 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ ├── ns4 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ ├── ns5 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ └── tests.sh │ │ │ │ ├── genzone.sh │ │ │ │ ├── glue │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── fi.good │ │ │ │ │ ├── noglue.good │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── cache.in │ │ │ │ │ │ ├── mil.db │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── net.db │ │ │ │ │ │ ├── root-servers.nil.db │ │ │ │ │ │ └── root.db │ │ │ │ │ ├── setup.sh │ │ │ │ │ ├── tests.sh │ │ │ │ │ ├── xx.good │ │ │ │ │ └── yy.good │ │ │ │ ├── gost │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── root.db.in │ │ │ │ │ │ └── sign.sh │ │ │ │ │ ├── ns2 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── ifconfig.sh │ │ │ │ ├── inline │ │ │ │ │ ├── checkdsa.sh │ │ │ │ │ ├── checkdsa.sh.in │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── root.db.in │ │ │ │ │ │ └── sign.sh │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── bits.db.in │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns3 │ │ │ │ │ │ ├── master.db.in │ │ │ │ │ │ ├── master2.db.in │ │ │ │ │ │ ├── master3.db.in │ │ │ │ │ │ ├── master4.db.in │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── sign.sh │ │ │ │ │ ├── ns4 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── noixfr.db.in │ │ │ │ │ ├── ns5 │ │ │ │ │ │ ├── named.conf.post │ │ │ │ │ │ └── named.conf.pre │ │ │ │ │ ├── ns6 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── ixfr │ │ │ │ │ ├── ans2 │ │ │ │ │ │ └── startme │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ └── startme │ │ │ │ │ ├── ns3 │ │ │ │ │ │ ├── mytest0.db │ │ │ │ │ │ ├── mytest1.db │ │ │ │ │ │ ├── mytest2.db │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── subtest0.db │ │ │ │ │ │ └── subtest1.db │ │ │ │ │ ├── ns4 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── legacy │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named1.conf │ │ │ │ │ │ ├── named2.conf │ │ │ │ │ │ ├── root.db │ │ │ │ │ │ └── trusted.conf │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── dropedns.db │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── named.dropedns │ │ │ │ │ ├── ns3 │ │ │ │ │ │ ├── dropedns-notcp.db │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── named.dropedns │ │ │ │ │ │ └── named.notcp │ │ │ │ │ ├── ns4 │ │ │ │ │ │ ├── named.args │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── plain.db │ │ │ │ │ ├── ns5 │ │ │ │ │ │ ├── named.args │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── named.notcp │ │ │ │ │ │ └── plain-notcp.db │ │ │ │ │ ├── ns6 │ │ │ │ │ │ ├── edns512.db.in │ │ │ │ │ │ ├── edns512.db.signed │ │ │ │ │ │ ├── named.args │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── sign.sh │ │ │ │ │ ├── ns7 │ │ │ │ │ │ ├── edns512-notcp.db.in │ │ │ │ │ │ ├── edns512-notcp.db.signed │ │ │ │ │ │ ├── named.args │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── named.notcp │ │ │ │ │ │ └── sign.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── limits │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── knowngood.dig.out.1000 │ │ │ │ │ ├── knowngood.dig.out.2000 │ │ │ │ │ ├── knowngood.dig.out.3000 │ │ │ │ │ ├── knowngood.dig.out.4000 │ │ │ │ │ ├── knowngood.dig.out.a-maximum-rrset │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ └── tests.sh │ │ │ │ ├── logfileconfig │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.dirconf │ │ │ │ │ │ ├── named.pipeconf │ │ │ │ │ │ ├── named.plain │ │ │ │ │ │ ├── named.symconf │ │ │ │ │ │ ├── rndc.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── lwresd │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── lwresd1 │ │ │ │ │ │ ├── lwresd.conf │ │ │ │ │ │ └── resolv.conf │ │ │ │ │ ├── lwtest.c │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── 10.10.10.in-addr.arpa.db │ │ │ │ │ │ ├── e.example1.db │ │ │ │ │ │ ├── example1.db │ │ │ │ │ │ ├── example2.db │ │ │ │ │ │ ├── ip6.arpa.db │ │ │ │ │ │ ├── ip6.int.db │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ ├── resolv.conf │ │ │ │ │ └── tests.sh │ │ │ │ ├── masterfile │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── knowngood.dig.out │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── include.db │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── sub.db │ │ │ │ │ │ ├── ttl1.db │ │ │ │ │ │ └── ttl2.db │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ └── named.conf │ │ │ │ │ └── tests.sh │ │ │ │ ├── masterformat │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── compile.sh │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ ├── large.db.in │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── formerly-text.db.in │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── metadata │ │ │ │ │ ├── child.db │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── parent.db │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── notify │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── example1.db │ │ │ │ │ │ ├── example2.db │ │ │ │ │ │ ├── example3.db │ │ │ │ │ │ ├── example4.db │ │ │ │ │ │ ├── generic.db │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns3 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns4 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── named.port │ │ │ │ │ ├── ns5 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── x21.db │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── nslookup │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── nsupdate │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── commandlist │ │ │ │ │ ├── knowngood.ns1.after │ │ │ │ │ ├── knowngood.ns1.afterstop │ │ │ │ │ ├── knowngood.ns1.before │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── example1.db │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns2 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns3 │ │ │ │ │ │ ├── dnskey.test.db.in │ │ │ │ │ │ ├── example.db.in │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── nsec3param.test.db.in │ │ │ │ │ │ └── sign.sh │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ ├── tests.sh │ │ │ │ │ └── update_test.pl │ │ │ │ ├── org.isc.bind.system │ │ │ │ ├── org.isc.bind.system.plist │ │ │ │ ├── packet.pl │ │ │ │ ├── pending │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── root.db.in │ │ │ │ │ │ └── sign.sh │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── example.com.db.in │ │ │ │ │ │ ├── example.db.in │ │ │ │ │ │ ├── forgery.db │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── sign.sh │ │ │ │ │ ├── ns3 │ │ │ │ │ │ ├── hostile.db │ │ │ │ │ │ ├── mail.example.db │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns4 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── pkcs11 │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── example.db.in │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ ├── tests.sh │ │ │ │ │ └── usepkcs11 │ │ │ │ ├── reclimit │ │ │ │ │ ├── README │ │ │ │ │ ├── ans2 │ │ │ │ │ │ └── ans.pl │ │ │ │ │ ├── ans4 │ │ │ │ │ │ └── ans.pl │ │ │ │ │ ├── ans7 │ │ │ │ │ │ └── ans.pl │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ ├── ns3 │ │ │ │ │ │ ├── hints.db │ │ │ │ │ │ ├── named1.conf │ │ │ │ │ │ ├── named2.conf │ │ │ │ │ │ ├── named3.conf │ │ │ │ │ │ └── named4.conf │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── redirect │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── conf │ │ │ │ │ │ ├── bad1.conf │ │ │ │ │ │ ├── bad2.conf │ │ │ │ │ │ ├── bad3.conf │ │ │ │ │ │ ├── good1.conf │ │ │ │ │ │ ├── good2.conf │ │ │ │ │ │ ├── good3.conf │ │ │ │ │ │ └── good4.conf │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── redirect.db │ │ │ │ │ │ ├── root.db │ │ │ │ │ │ └── sign.sh │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── example.db.in │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── redirect.db.in │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── resolver │ │ │ │ │ ├── ans2 │ │ │ │ │ │ └── ans.pl │ │ │ │ │ ├── ans3 │ │ │ │ │ │ └── ans.pl │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.hint │ │ │ │ │ ├── ns4 │ │ │ │ │ │ ├── broken.db │ │ │ │ │ │ ├── child.server.db │ │ │ │ │ │ ├── moves.db │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── named.noaa │ │ │ │ │ │ ├── root.db │ │ │ │ │ │ ├── tld1.db │ │ │ │ │ │ └── tld2.db │ │ │ │ │ ├── ns5 │ │ │ │ │ │ ├── child.server.db │ │ │ │ │ │ ├── moves.db │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.hint │ │ │ │ │ ├── ns6 │ │ │ │ │ │ ├── broken.db │ │ │ │ │ │ ├── example.net.db.in │ │ │ │ │ │ ├── keygen.sh │ │ │ │ │ │ ├── moves.db │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── root.db │ │ │ │ │ │ └── to-be-removed.tld.db.in │ │ │ │ │ ├── ns7 │ │ │ │ │ │ ├── all-cnames.db │ │ │ │ │ │ ├── named.args │ │ │ │ │ │ ├── named1.conf │ │ │ │ │ │ ├── named2.conf │ │ │ │ │ │ ├── root.hint │ │ │ │ │ │ └── server.db.in │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── rndc │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── secondkey.conf │ │ │ │ │ ├── ns3 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── rpz │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── base-tld2s.db │ │ │ │ │ │ ├── bl.tld2.db.in │ │ │ │ │ │ ├── blv2.tld2.db.in │ │ │ │ │ │ ├── blv3.tld2.db.in │ │ │ │ │ │ ├── hints │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── tld2.db │ │ │ │ │ ├── ns3 │ │ │ │ │ │ ├── base.db │ │ │ │ │ │ ├── crash1 │ │ │ │ │ │ ├── crash2 │ │ │ │ │ │ ├── hints │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns4 │ │ │ │ │ │ ├── hints │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── tld4.db │ │ │ │ │ ├── ns5 │ │ │ │ │ │ ├── hints │ │ │ │ │ │ ├── named.args │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── tld5.db │ │ │ │ │ ├── ns6 │ │ │ │ │ │ ├── hints │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── qperf.sh │ │ │ │ │ ├── rpz.c │ │ │ │ │ ├── setup.sh │ │ │ │ │ ├── test1 │ │ │ │ │ ├── test2 │ │ │ │ │ ├── test3 │ │ │ │ │ ├── test4 │ │ │ │ │ ├── test4a │ │ │ │ │ ├── test5 │ │ │ │ │ └── tests.sh │ │ │ │ ├── rrl │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── hints │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── tld2.db │ │ │ │ │ ├── ns3 │ │ │ │ │ │ ├── hints │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── tld3.db │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── rrl.c │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── rrsetorder │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── dig.out.fixed.good │ │ │ │ │ ├── dig.out.random.good1 │ │ │ │ │ ├── dig.out.random.good10 │ │ │ │ │ ├── dig.out.random.good11 │ │ │ │ │ ├── dig.out.random.good12 │ │ │ │ │ ├── dig.out.random.good13 │ │ │ │ │ ├── dig.out.random.good14 │ │ │ │ │ ├── dig.out.random.good15 │ │ │ │ │ ├── dig.out.random.good16 │ │ │ │ │ ├── dig.out.random.good17 │ │ │ │ │ ├── dig.out.random.good18 │ │ │ │ │ ├── dig.out.random.good19 │ │ │ │ │ ├── dig.out.random.good2 │ │ │ │ │ ├── dig.out.random.good20 │ │ │ │ │ ├── dig.out.random.good21 │ │ │ │ │ ├── dig.out.random.good22 │ │ │ │ │ ├── dig.out.random.good23 │ │ │ │ │ ├── dig.out.random.good24 │ │ │ │ │ ├── dig.out.random.good3 │ │ │ │ │ ├── dig.out.random.good4 │ │ │ │ │ ├── dig.out.random.good5 │ │ │ │ │ ├── dig.out.random.good6 │ │ │ │ │ ├── dig.out.random.good7 │ │ │ │ │ ├── dig.out.random.good8 │ │ │ │ │ ├── dig.out.random.good9 │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ ├── ns2 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns3 │ │ │ │ │ │ └── named.conf │ │ │ │ │ └── tests.sh │ │ │ │ ├── rsabigexponent │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── bigkey.c │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── conf │ │ │ │ │ │ ├── bad01.conf │ │ │ │ │ │ ├── bad02.conf │ │ │ │ │ │ ├── bad03.conf │ │ │ │ │ │ ├── good01.conf │ │ │ │ │ │ ├── good02.conf │ │ │ │ │ │ └── good03.conf │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── root.db.in │ │ │ │ │ │ └── sign.sh │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── Xexample.+005+05896.key │ │ │ │ │ │ ├── Xexample.+005+05896.private │ │ │ │ │ │ ├── Xexample.+005+51829.key │ │ │ │ │ │ ├── Xexample.+005+51829.private │ │ │ │ │ │ ├── dsset-example.in │ │ │ │ │ │ ├── example.db.bad │ │ │ │ │ │ ├── example.db.in │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── sign.sh │ │ │ │ │ ├── ns3 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── run.sh │ │ │ │ ├── runall.sh │ │ │ │ ├── send.pl │ │ │ │ ├── setup.sh │ │ │ │ ├── smartsign │ │ │ │ │ ├── child.db │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── parent.db │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── sortlist │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ └── tests.sh │ │ │ │ ├── spf │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── spf.db │ │ │ │ │ └── tests.sh │ │ │ │ ├── start.pl │ │ │ │ ├── start.sh │ │ │ │ ├── staticstub │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── conf │ │ │ │ │ │ ├── bad01.conf │ │ │ │ │ │ ├── bad02.conf │ │ │ │ │ │ ├── bad03.conf │ │ │ │ │ │ ├── bad04.conf │ │ │ │ │ │ ├── bad05.conf │ │ │ │ │ │ ├── bad06.conf │ │ │ │ │ │ ├── bad07.conf │ │ │ │ │ │ ├── bad08.conf │ │ │ │ │ │ ├── bad09.conf │ │ │ │ │ │ ├── bad10.conf │ │ │ │ │ │ ├── bad11.conf │ │ │ │ │ │ ├── good01.conf │ │ │ │ │ │ ├── good02.conf │ │ │ │ │ │ ├── good03.conf │ │ │ │ │ │ ├── good04.conf │ │ │ │ │ │ └── good05.conf │ │ │ │ │ ├── knowngood.dig.out.rec │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ ├── ns2 │ │ │ │ │ │ └── named.conf.in │ │ │ │ │ ├── ns3 │ │ │ │ │ │ ├── example.db.in │ │ │ │ │ │ ├── example.org.db │ │ │ │ │ │ ├── named.conf.in │ │ │ │ │ │ └── sign.sh │ │ │ │ │ ├── ns4 │ │ │ │ │ │ ├── example.com.db │ │ │ │ │ │ ├── example.info.db │ │ │ │ │ │ ├── example.org.db │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── sign.sh │ │ │ │ │ │ └── sub.example.db.in │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── stop.pl │ │ │ │ ├── stop.sh │ │ │ │ ├── stress │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns2 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns3 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns4 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── setup.pl │ │ │ │ │ ├── setup.sh │ │ │ │ │ ├── tests.sh │ │ │ │ │ └── update.pl │ │ │ │ ├── stub │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── knowngood.dig.out.norec │ │ │ │ │ ├── knowngood.dig.out.rec │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── child.example.db │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns3 │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ └── named.conf │ │ │ │ │ └── tests.sh │ │ │ │ ├── testcrypto.sh │ │ │ │ ├── testsock.pl │ │ │ │ ├── testsock6.pl │ │ │ │ ├── tkey │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── keycreate.c │ │ │ │ │ ├── keydelete.c │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ ├── named.conf.in │ │ │ │ │ │ └── setup.sh │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── tsig │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ └── named.conf │ │ │ │ │ └── tests.sh │ │ │ │ ├── tsiggss │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── authsock.pl │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── gssapi_krb.c │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── administrator.ccache │ │ │ │ │ │ ├── dns.keytab │ │ │ │ │ │ ├── example.nil.db.in │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── testdenied.ccache │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── unknown │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── large.out │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── broken1.db │ │ │ │ │ │ ├── broken2.db │ │ │ │ │ │ ├── broken3.db │ │ │ │ │ │ ├── broken4.db │ │ │ │ │ │ ├── broken5.db │ │ │ │ │ │ ├── class10.hints │ │ │ │ │ │ ├── example-class10.db │ │ │ │ │ │ ├── example-in.db │ │ │ │ │ │ ├── large.db │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns2 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns3 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── sign.sh │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ ├── tests.sh │ │ │ │ │ └── zones │ │ │ │ │ │ └── nan.bad │ │ │ │ ├── upforwd │ │ │ │ │ ├── ans4 │ │ │ │ │ │ └── ans.pl │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── knowngood.after1 │ │ │ │ │ ├── knowngood.after2 │ │ │ │ │ ├── knowngood.before │ │ │ │ │ ├── knowngood.ns2.before │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── example1.db │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns2 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns3 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── nomaster.db │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── v6synth │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ ├── ip6.arpa.db │ │ │ │ │ │ ├── ip6.int.db │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns3 │ │ │ │ │ │ └── named.conf │ │ │ │ │ └── tests.sh │ │ │ │ ├── verify │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ ├── tests.sh │ │ │ │ │ └── zones │ │ │ │ │ │ ├── genzones.sh │ │ │ │ │ │ └── unsigned.db │ │ │ │ ├── views │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── example1.db │ │ │ │ │ │ ├── example2.db │ │ │ │ │ │ ├── external │ │ │ │ │ │ │ └── inline.db │ │ │ │ │ │ ├── internal.db │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ └── inline.db │ │ │ │ │ │ ├── named1.conf │ │ │ │ │ │ └── named2.conf │ │ │ │ │ ├── ns3 │ │ │ │ │ │ ├── internal.db │ │ │ │ │ │ ├── named1.conf │ │ │ │ │ │ └── named2.conf │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── wildcard │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── dlv.db.in │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── nsec.db.in │ │ │ │ │ │ ├── nsec3.db.in │ │ │ │ │ │ ├── private.nsec.db.in │ │ │ │ │ │ ├── private.nsec3.db.in │ │ │ │ │ │ ├── root.db.in │ │ │ │ │ │ └── sign.sh │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── hints │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns3 │ │ │ │ │ │ ├── hints │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns4 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns5 │ │ │ │ │ │ ├── hints │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── xfer │ │ │ │ │ ├── ans5 │ │ │ │ │ │ ├── badkeydata │ │ │ │ │ │ ├── goodaxfr │ │ │ │ │ │ ├── partial │ │ │ │ │ │ ├── unknownkey │ │ │ │ │ │ ├── unsigned │ │ │ │ │ │ └── wrongkey │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── dig1.good │ │ │ │ │ ├── dig2.good │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── slave.db.in │ │ │ │ │ ├── ns3 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns4 │ │ │ │ │ │ ├── named.conf.base │ │ │ │ │ │ └── root.db.in │ │ │ │ │ ├── ns6 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns7 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── xferquota │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── changing1.db │ │ │ │ │ │ ├── changing2.db │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ ├── ns2 │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── setup.pl │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── zero │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.db │ │ │ │ │ ├── ns2 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── ns3 │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ └── root.hint │ │ │ │ │ ├── ns4 │ │ │ │ │ │ └── named.conf │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ └── zonechecks │ │ │ │ │ ├── a.db │ │ │ │ │ ├── aaaa.db │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── cname.db │ │ │ │ │ ├── dname.db │ │ │ │ │ ├── noaddress.db │ │ │ │ │ ├── ns1 │ │ │ │ │ └── named.conf │ │ │ │ │ ├── nxdomain.db │ │ │ │ │ ├── prereq.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ ├── t_api.pl │ │ │ ├── task_test.c │ │ │ ├── tasks │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── t_tasks.c │ │ │ │ └── win32 │ │ │ │ │ ├── t_tasks.dsp.in │ │ │ │ │ ├── t_tasks.dsw │ │ │ │ │ ├── t_tasks.mak.in │ │ │ │ │ ├── t_tasks.vcxproj.filters.in │ │ │ │ │ ├── t_tasks.vcxproj.in │ │ │ │ │ └── t_tasks.vcxproj.user │ │ │ ├── timer_test.c │ │ │ ├── timers │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── t_timers.c │ │ │ │ └── win32 │ │ │ │ │ ├── t_timers.dsp.in │ │ │ │ │ ├── t_timers.dsw │ │ │ │ │ ├── t_timers.mak.in │ │ │ │ │ ├── t_timers.vcxproj.filters.in │ │ │ │ │ ├── t_timers.vcxproj.in │ │ │ │ │ └── t_timers.vcxproj.user │ │ │ ├── virtual-time │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── autosign-ksk │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── example.db.in │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── root.db │ │ │ │ │ │ ├── sign.sh │ │ │ │ │ │ └── wrap.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── autosign-zsk │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── example.db.in │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── root.db │ │ │ │ │ │ ├── sign.sh │ │ │ │ │ │ └── wrap.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── cleanall.sh │ │ │ │ ├── common │ │ │ │ │ ├── controls.conf │ │ │ │ │ ├── rndc.conf │ │ │ │ │ └── root.hint │ │ │ │ ├── conf.sh │ │ │ │ ├── conf.sh.in │ │ │ │ ├── run.sh │ │ │ │ ├── runall.sh │ │ │ │ ├── setup.sh │ │ │ │ ├── slave │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── ns1 │ │ │ │ │ │ ├── example.db.in │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ ├── root.db │ │ │ │ │ │ └── wrap.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── tests.sh │ │ │ │ ├── start.pl │ │ │ │ ├── start.sh │ │ │ │ ├── stop.pl │ │ │ │ ├── stop.sh │ │ │ │ ├── testsock.pl │ │ │ │ └── vtwrapper.c │ │ │ ├── win32 │ │ │ │ ├── backtrace_test.dsp.in │ │ │ │ ├── backtrace_test.dsw │ │ │ │ ├── backtrace_test.mak.in │ │ │ │ ├── backtrace_test.vcxproj.filters.in │ │ │ │ ├── backtrace_test.vcxproj.in │ │ │ │ ├── backtrace_test.vcxproj.user │ │ │ │ ├── inter_test.dsp.in │ │ │ │ ├── inter_test.dsw │ │ │ │ ├── inter_test.mak.in │ │ │ │ ├── inter_test.vcxproj.filters.in │ │ │ │ ├── inter_test.vcxproj.in │ │ │ │ ├── inter_test.vcxproj.user │ │ │ │ ├── rwlock_test.dsp.in │ │ │ │ ├── rwlock_test.dsw │ │ │ │ ├── rwlock_test.mak.in │ │ │ │ ├── rwlock_test.vcxproj.filters.in │ │ │ │ ├── rwlock_test.vcxproj.in │ │ │ │ ├── rwlock_test.vcxproj.user │ │ │ │ ├── shutdown_test.dsp.in │ │ │ │ ├── shutdown_test.dsw │ │ │ │ ├── shutdown_test.mak.in │ │ │ │ ├── shutdown_test.vcxproj.filters.in │ │ │ │ ├── shutdown_test.vcxproj.in │ │ │ │ ├── shutdown_test.vcxproj.user │ │ │ │ ├── sock_test.dsp.in │ │ │ │ ├── sock_test.dsw │ │ │ │ ├── sock_test.mak.in │ │ │ │ ├── sock_test.vcxproj.filters.in │ │ │ │ ├── sock_test.vcxproj.in │ │ │ │ ├── sock_test.vcxproj.user │ │ │ │ ├── task_test.dsp.in │ │ │ │ ├── task_test.dsw │ │ │ │ ├── task_test.mak.in │ │ │ │ ├── task_test.vcxproj.filters.in │ │ │ │ ├── task_test.vcxproj.in │ │ │ │ ├── task_test.vcxproj.user │ │ │ │ ├── timer_test.dsp.in │ │ │ │ ├── timer_test.dsw │ │ │ │ ├── timer_test.mak.in │ │ │ │ ├── timer_test.vcxproj.filters.in │ │ │ │ ├── timer_test.vcxproj.in │ │ │ │ └── timer_test.vcxproj.user │ │ │ ├── wire_test.c │ │ │ ├── wire_test.data │ │ │ ├── wire_test.data2 │ │ │ ├── wire_test.data3 │ │ │ ├── wire_test.data4 │ │ │ └── zone_test.c │ │ ├── tools │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── arpaname.1 │ │ │ ├── arpaname.c │ │ │ ├── arpaname.docbook │ │ │ ├── arpaname.html │ │ │ ├── genrandom.8 │ │ │ ├── genrandom.c │ │ │ ├── genrandom.docbook │ │ │ ├── genrandom.html │ │ │ ├── isc-hmac-fixup.8 │ │ │ ├── isc-hmac-fixup.c │ │ │ ├── isc-hmac-fixup.docbook │ │ │ ├── isc-hmac-fixup.html │ │ │ ├── named-journalprint.8 │ │ │ ├── named-journalprint.c │ │ │ ├── named-journalprint.docbook │ │ │ ├── named-journalprint.html │ │ │ ├── nsec3hash.8 │ │ │ ├── nsec3hash.c │ │ │ ├── nsec3hash.docbook │ │ │ ├── nsec3hash.html │ │ │ └── win32 │ │ │ │ ├── arpaname.dsp.in │ │ │ │ ├── arpaname.dsw │ │ │ │ ├── arpaname.mak.in │ │ │ │ ├── arpaname.vcxproj.filters.in │ │ │ │ ├── arpaname.vcxproj.in │ │ │ │ ├── arpaname.vcxproj.user │ │ │ │ ├── genrandom.dsp.in │ │ │ │ ├── genrandom.dsw │ │ │ │ ├── genrandom.mak.in │ │ │ │ ├── genrandom.vcxproj.filters.in │ │ │ │ ├── genrandom.vcxproj.in │ │ │ │ ├── genrandom.vcxproj.user │ │ │ │ ├── ischmacfixup.dsp.in │ │ │ │ ├── ischmacfixup.dsw │ │ │ │ ├── ischmacfixup.mak.in │ │ │ │ ├── ischmacfixup.vcxproj.filters.in │ │ │ │ ├── ischmacfixup.vcxproj.in │ │ │ │ ├── ischmacfixup.vcxproj.user │ │ │ │ ├── journalprint.dsp.in │ │ │ │ ├── journalprint.dsw │ │ │ │ ├── journalprint.mak.in │ │ │ │ ├── journalprint.vcxproj.filters.in │ │ │ │ ├── journalprint.vcxproj.in │ │ │ │ ├── journalprint.vcxproj.user │ │ │ │ ├── nsec3hash.dsp.in │ │ │ │ ├── nsec3hash.dsw │ │ │ │ ├── nsec3hash.mak.in │ │ │ │ ├── nsec3hash.vcxproj.filters.in │ │ │ │ ├── nsec3hash.vcxproj.in │ │ │ │ └── nsec3hash.vcxproj.user │ │ └── win32 │ │ │ └── BINDInstall │ │ │ ├── AccountInfo.cpp │ │ │ ├── AccountInfo.h │ │ │ ├── BINDInstall.cpp │ │ │ ├── BINDInstall.dsp.in │ │ │ ├── BINDInstall.dsw │ │ │ ├── BINDInstall.h │ │ │ ├── BINDInstall.mak.in │ │ │ ├── BINDInstall.rc │ │ │ ├── BINDInstall.vcxproj.filters.in │ │ │ ├── BINDInstall.vcxproj.in │ │ │ ├── BINDInstall.vcxproj.user │ │ │ ├── BINDInstallDlg.cpp │ │ │ ├── BINDInstallDlg.h │ │ │ ├── DirBrowse.cpp │ │ │ ├── DirBrowse.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── VersionInfo.cpp │ │ │ ├── VersionInfo.h │ │ │ ├── res │ │ │ ├── BINDInstall.ico │ │ │ └── BINDInstall.rc2 │ │ │ └── resource.h │ ├── bind.keys │ ├── config.guess │ ├── config.h │ ├── config.h.in │ ├── config.h.win32 │ ├── config.log │ ├── config.status │ ├── config.sub │ ├── config.threads.in │ ├── configure │ ├── configure.in │ ├── contrib │ │ ├── README │ │ ├── check-secure-delegation.pl │ │ ├── check-secure-delegation.pl.in │ │ ├── check5011.pl │ │ ├── dane │ │ │ ├── mkdane.sh │ │ │ └── tlsa6698.pem │ │ ├── dlz │ │ │ ├── bin │ │ │ │ └── dlzbdb │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── dlzbdb.c │ │ │ ├── config.dlz.in │ │ │ ├── drivers │ │ │ │ ├── dlz_bdb_driver.c │ │ │ │ ├── dlz_bdbhpt_driver.c │ │ │ │ ├── dlz_dlopen_driver.c │ │ │ │ ├── dlz_drivers.c │ │ │ │ ├── dlz_filesystem_driver.c │ │ │ │ ├── dlz_ldap_driver.c │ │ │ │ ├── dlz_mysql_driver.c │ │ │ │ ├── dlz_odbc_driver.c │ │ │ │ ├── dlz_postgres_driver.c │ │ │ │ ├── dlz_stub_driver.c │ │ │ │ ├── include │ │ │ │ │ └── dlz │ │ │ │ │ │ ├── dlz_bdb_driver.h │ │ │ │ │ │ ├── dlz_bdbhpt_driver.h │ │ │ │ │ │ ├── dlz_dlopen_driver.h │ │ │ │ │ │ ├── dlz_drivers.h │ │ │ │ │ │ ├── dlz_filesystem_driver.h │ │ │ │ │ │ ├── dlz_ldap_driver.h │ │ │ │ │ │ ├── dlz_mysql_driver.h │ │ │ │ │ │ ├── dlz_odbc_driver.h │ │ │ │ │ │ ├── dlz_postgres_driver.h │ │ │ │ │ │ ├── dlz_stub_driver.h │ │ │ │ │ │ └── sdlz_helper.h │ │ │ │ ├── rules.in │ │ │ │ └── sdlz_helper.c │ │ │ ├── example │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── dlz_example.c │ │ │ │ ├── named.conf │ │ │ │ └── win32 │ │ │ │ │ ├── DLLMain.c │ │ │ │ │ ├── dxdriver.def │ │ │ │ │ ├── dxdriver.dsp │ │ │ │ │ ├── dxdriver.dsw │ │ │ │ │ └── dxdriver.mak │ │ │ └── modules │ │ │ │ ├── bdbhpt │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── dlz_bdbhpt_dynamic.c │ │ │ │ └── testing │ │ │ │ │ ├── README │ │ │ │ │ ├── bdbhpt-populate.pl │ │ │ │ │ ├── dns-data.txt │ │ │ │ │ └── named.conf │ │ │ │ └── dlz_minimal.h │ │ ├── idn │ │ │ ├── README.idnkit │ │ │ └── idnkit-1.0-src │ │ │ │ ├── ChangeLog │ │ │ │ ├── DISTFILES │ │ │ │ ├── INSTALL │ │ │ │ ├── INSTALL.ja │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Makefile.in │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ ├── README.ja │ │ │ │ ├── acconfig.h │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── include │ │ │ │ ├── Makefile.in │ │ │ │ ├── config.h.in │ │ │ │ ├── config.h.win │ │ │ │ ├── idn │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── aliaslist.h │ │ │ │ │ ├── api.h │ │ │ │ │ ├── assert.h │ │ │ │ │ ├── checker.h │ │ │ │ │ ├── converter.h │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── delimitermap.h │ │ │ │ │ ├── export.h │ │ │ │ │ ├── filechecker.h │ │ │ │ │ ├── filemapper.h │ │ │ │ │ ├── localencoding.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── logmacro.h │ │ │ │ │ ├── mapper.h │ │ │ │ │ ├── mapselector.h │ │ │ │ │ ├── nameprep.h │ │ │ │ │ ├── normalizer.h │ │ │ │ │ ├── punycode.h │ │ │ │ │ ├── race.h │ │ │ │ │ ├── res.h │ │ │ │ │ ├── resconf.h │ │ │ │ │ ├── result.h │ │ │ │ │ ├── strhash.h │ │ │ │ │ ├── ucs4.h │ │ │ │ │ ├── ucsmap.h │ │ │ │ │ ├── ucsset.h │ │ │ │ │ ├── unicode.h │ │ │ │ │ ├── unormalize.h │ │ │ │ │ ├── utf8.h │ │ │ │ │ ├── util.h │ │ │ │ │ └── version.h │ │ │ │ └── mdn │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── api.h │ │ │ │ │ ├── localencoding.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── res.h │ │ │ │ │ ├── resconf.h │ │ │ │ │ ├── result.h │ │ │ │ │ ├── utf8.h │ │ │ │ │ └── version.h │ │ │ │ ├── install-sh │ │ │ │ ├── lib │ │ │ │ ├── Makefile.in │ │ │ │ ├── aliaslist.c │ │ │ │ ├── aliaslist.sh │ │ │ │ ├── api.c │ │ │ │ ├── checker.c │ │ │ │ ├── converter.c │ │ │ │ ├── debug.c │ │ │ │ ├── delimitermap.c │ │ │ │ ├── filechecker.c │ │ │ │ ├── filemapper.c │ │ │ │ ├── idn.conf.sample.in │ │ │ │ ├── localencoding.c │ │ │ │ ├── log.c │ │ │ │ ├── make.wnt │ │ │ │ ├── mapper.c │ │ │ │ ├── mapselector.c │ │ │ │ ├── nameprep.c │ │ │ │ ├── nameprep_template.c │ │ │ │ ├── nameprepdata.c │ │ │ │ ├── normalizer.c │ │ │ │ ├── punycode.c │ │ │ │ ├── race.c │ │ │ │ ├── res.c │ │ │ │ ├── resconf.c │ │ │ │ ├── result.c │ │ │ │ ├── strhash.c │ │ │ │ ├── tests │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── api-init1.tsy │ │ │ │ │ ├── api-init2.tsy │ │ │ │ │ ├── api-init3.tsy │ │ │ │ │ ├── api-init4-1.tsy │ │ │ │ │ ├── api-init4-2.tsy │ │ │ │ │ ├── api-init4-3.tsy │ │ │ │ │ ├── api-init5-1.tsy │ │ │ │ │ ├── api-init5-2.tsy │ │ │ │ │ ├── api-init5-3.tsy │ │ │ │ │ ├── api.tsy │ │ │ │ │ ├── checker.tsy │ │ │ │ │ ├── codeset.h │ │ │ │ │ ├── converter.tsy │ │ │ │ │ ├── delimitermap.tsy │ │ │ │ │ ├── iconvchk.c │ │ │ │ │ ├── mapper.tsy │ │ │ │ │ ├── mapselector.tsy │ │ │ │ │ ├── nameprep.tsy │ │ │ │ │ ├── normalizer.tsy │ │ │ │ │ ├── res.tsy │ │ │ │ │ ├── resconf.tsy │ │ │ │ │ ├── setenv.c │ │ │ │ │ ├── setenv.h │ │ │ │ │ ├── testsuite.c │ │ │ │ │ ├── testsuite.h │ │ │ │ │ ├── testutil.c │ │ │ │ │ ├── testutil.h │ │ │ │ │ ├── testygen │ │ │ │ │ ├── ucs4.tsy │ │ │ │ │ └── utffilter │ │ │ │ ├── ucs4.c │ │ │ │ ├── ucsmap.c │ │ │ │ ├── ucsset.c │ │ │ │ ├── unicode.c │ │ │ │ ├── unicode_template.c │ │ │ │ ├── unicodedata_320.c │ │ │ │ ├── unormalize.c │ │ │ │ ├── utf8.c │ │ │ │ ├── util.c │ │ │ │ └── version.c │ │ │ │ ├── ltconfig │ │ │ │ ├── ltmain.sh │ │ │ │ ├── make.wnt │ │ │ │ ├── man │ │ │ │ ├── Makefile.in │ │ │ │ ├── idn.conf.5.in │ │ │ │ └── libidnkit.3.in │ │ │ │ ├── map │ │ │ │ ├── Makefile.in │ │ │ │ └── jp.map │ │ │ │ ├── mkinstalldirs │ │ │ │ ├── patch │ │ │ │ └── bind9 │ │ │ │ │ ├── bind-9.2.1-patch │ │ │ │ │ └── bind-9.2.2-patch │ │ │ │ ├── tools │ │ │ │ ├── Makefile.in │ │ │ │ ├── idnconv │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── idnconv.1 │ │ │ │ │ ├── idnconv.c │ │ │ │ │ ├── idnslookup.in │ │ │ │ │ ├── make.wnt │ │ │ │ │ ├── selectiveencode.c │ │ │ │ │ ├── selectiveencode.h │ │ │ │ │ ├── util.c │ │ │ │ │ └── util.h │ │ │ │ ├── make.wnt │ │ │ │ ├── rpm │ │ │ │ │ └── idnkit.spec │ │ │ │ └── runidn │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── resolver.c │ │ │ │ │ ├── resolver.h │ │ │ │ │ ├── runidn.1 │ │ │ │ │ ├── runidn.in │ │ │ │ │ ├── stub.c │ │ │ │ │ └── stub.h │ │ │ │ ├── util │ │ │ │ ├── Makefile │ │ │ │ ├── SparseMap.pm │ │ │ │ ├── UCD.pm │ │ │ │ ├── generate_nameprep_data.pl │ │ │ │ └── generate_normalize_data.pl │ │ │ │ ├── win │ │ │ │ └── README.WIN │ │ │ │ └── wsock │ │ │ │ ├── README.txt │ │ │ │ ├── README_j.txt │ │ │ │ ├── common │ │ │ │ ├── checkdll.c │ │ │ │ ├── convert.c │ │ │ │ ├── dump.c │ │ │ │ ├── encoding.c │ │ │ │ ├── hook.c │ │ │ │ ├── make.wnt │ │ │ │ ├── printf.c │ │ │ │ └── wrapcommon.h │ │ │ │ ├── config │ │ │ │ ├── idnconf.tcl │ │ │ │ └── make.wnt │ │ │ │ ├── make.wnt │ │ │ │ ├── wsock11 │ │ │ │ ├── dlldef.h │ │ │ │ ├── dllfunc.c │ │ │ │ ├── dllload.c │ │ │ │ ├── dllmain.c │ │ │ │ ├── dllstub.c │ │ │ │ ├── make.wnt │ │ │ │ └── wsock32.def │ │ │ │ └── wsock20 │ │ │ │ ├── dlldef.h │ │ │ │ ├── dllfunc.c │ │ │ │ ├── dllload.c │ │ │ │ ├── dllmain.c │ │ │ │ ├── dllstub.c │ │ │ │ ├── make.wnt │ │ │ │ └── ws2_32.def │ │ ├── linux │ │ │ └── coredump-patch │ │ ├── named-bootconf │ │ │ └── named-bootconf.sh │ │ ├── nanny │ │ │ └── nanny.pl │ │ ├── nslint-2.1a3 │ │ │ ├── CHANGES │ │ │ ├── FILES │ │ │ ├── INSTALL │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── aclocal.m4 │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── install-sh │ │ │ ├── lbl │ │ │ │ ├── gnuc.h │ │ │ │ ├── os-irix5.h │ │ │ │ ├── os-osf3.h │ │ │ │ ├── os-solaris2.h │ │ │ │ ├── os-sunos4.h │ │ │ │ └── os-ultrix4.h │ │ │ ├── mkdep │ │ │ ├── nslint.8 │ │ │ ├── nslint.c │ │ │ ├── savestr.c │ │ │ ├── savestr.h │ │ │ └── strerror.c │ │ ├── perftcpdns │ │ │ ├── Makefile.in │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── perftcpdns.c │ │ ├── pkcs11-keygen │ │ │ └── README │ │ ├── query-loc-0.4.0 │ │ │ ├── ADDRESSES │ │ │ ├── ALGO │ │ │ ├── INSTALL │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── USAGE │ │ │ ├── config.h.in │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── install-sh │ │ │ ├── loc.c │ │ │ ├── loc.h │ │ │ ├── loc_ntoa.c │ │ │ ├── query-loc.1 │ │ │ ├── query-loc.c │ │ │ └── reconf │ │ ├── queryperf │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── config.h.in │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── input │ │ │ │ ├── sample.0 │ │ │ │ └── sample.1 │ │ │ ├── missing │ │ │ │ ├── addrinfo.h │ │ │ │ ├── getaddrinfo.c │ │ │ │ └── getnameinfo.c │ │ │ ├── queryperf.c │ │ │ └── utils │ │ │ │ └── gen-data-queryperf.py │ │ ├── sdb │ │ │ ├── bdb │ │ │ │ ├── README │ │ │ │ ├── bdb.c │ │ │ │ ├── bdb.h │ │ │ │ └── zone2bdb.c │ │ │ ├── dir │ │ │ │ ├── dirdb.c │ │ │ │ └── dirdb.h │ │ │ ├── ldap │ │ │ │ ├── INSTALL.ldap │ │ │ │ ├── README.ldap │ │ │ │ ├── README.zone2ldap │ │ │ │ ├── ldapdb.c │ │ │ │ ├── ldapdb.h │ │ │ │ ├── zone2ldap.1 │ │ │ │ └── zone2ldap.c │ │ │ ├── pgsql │ │ │ │ ├── pgsqldb.c │ │ │ │ ├── pgsqldb.h │ │ │ │ └── zonetodb.c │ │ │ ├── sqlite │ │ │ │ ├── README.sdb_sqlite │ │ │ │ ├── sqlitedb.c │ │ │ │ ├── sqlitedb.h │ │ │ │ └── zone2sqlite.c │ │ │ ├── tcl │ │ │ │ ├── lookup.tcl │ │ │ │ ├── tcldb.c │ │ │ │ └── tcldb.h │ │ │ └── time │ │ │ │ ├── timedb.c │ │ │ │ └── timedb.h │ │ ├── zkt │ │ │ ├── CHANGELOG │ │ │ ├── LICENSE │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── README.logging │ │ │ ├── TODO │ │ │ ├── config.h.in │ │ │ ├── config_zkt.h │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── debug.h │ │ │ ├── dki.c │ │ │ ├── dki.h │ │ │ ├── dnssec-zkt.c │ │ │ ├── doc │ │ │ │ └── KeyRollover.ms │ │ │ ├── domaincmp.c │ │ │ ├── domaincmp.h │ │ │ ├── examples │ │ │ │ ├── dnssec.conf │ │ │ │ ├── flat │ │ │ │ │ ├── dyn.example.net │ │ │ │ │ │ ├── Kdyn.example.net.+007+30323.key │ │ │ │ │ │ ├── Kdyn.example.net.+007+30323.private │ │ │ │ │ │ ├── Kdyn.example.net.+007+52935.key │ │ │ │ │ │ ├── Kdyn.example.net.+007+52935.private │ │ │ │ │ │ └── zktlog-dyn.example.net. │ │ │ │ │ ├── example.net │ │ │ │ │ │ ├── Kexample.net.+008+08406.key │ │ │ │ │ │ ├── Kexample.net.+008+08406.private │ │ │ │ │ │ ├── Kexample.net.+008+36257.key │ │ │ │ │ │ ├── Kexample.net.+008+36257.private │ │ │ │ │ │ ├── dnssec.conf │ │ │ │ │ │ ├── z.db │ │ │ │ │ │ └── zktlog-example.net. │ │ │ │ │ └── sub.example.net │ │ │ │ │ │ ├── Ksub.example.net.+007+02048.key │ │ │ │ │ │ ├── Ksub.example.net.+007+02048.published │ │ │ │ │ │ ├── Ksub.example.net.+007+41747.key │ │ │ │ │ │ ├── Ksub.example.net.+007+41747.private │ │ │ │ │ │ ├── Ksub.example.net.+007+42834.key │ │ │ │ │ │ ├── Ksub.example.net.+007+42834.private │ │ │ │ │ │ └── zktlog-sub.example.net. │ │ │ │ ├── hierarchical │ │ │ │ │ ├── de │ │ │ │ │ │ └── example.de │ │ │ │ │ │ │ ├── Kexample.de.+005+09743.key │ │ │ │ │ │ │ ├── Kexample.de.+005+09743.published │ │ │ │ │ │ │ ├── Kexample.de.+005+39599.key │ │ │ │ │ │ │ ├── Kexample.de.+005+39599.private │ │ │ │ │ │ │ └── sub.example.de │ │ │ │ │ │ │ ├── Ksub.example.de.+005+07295.key │ │ │ │ │ │ │ ├── Ksub.example.de.+005+07295.private │ │ │ │ │ │ │ ├── Ksub.example.de.+005+08544.key │ │ │ │ │ │ │ ├── Ksub.example.de.+005+08544.private │ │ │ │ │ │ │ ├── Ksub.example.de.+005+27861.key │ │ │ │ │ │ │ ├── Ksub.example.de.+005+27861.private │ │ │ │ │ │ │ ├── Ksub.example.de.+005+40559.key │ │ │ │ │ │ │ ├── Ksub.example.de.+005+40559.published │ │ │ │ │ │ │ ├── Ksub.example.de.+005+42639.key │ │ │ │ │ │ │ ├── Ksub.example.de.+005+42639.private │ │ │ │ │ │ │ ├── Ksub.example.de.+005+63530.depreciated │ │ │ │ │ │ │ └── Ksub.example.de.+005+63530.key │ │ │ │ │ └── log │ │ │ │ │ │ ├── zktlog-example.de. │ │ │ │ │ │ └── zktlog-sub.example.de. │ │ │ │ ├── zkt-ls.sh │ │ │ │ └── zkt-signer.sh │ │ │ ├── log.c │ │ │ ├── log.h │ │ │ ├── man │ │ │ │ ├── dnssec-zkt.8 │ │ │ │ ├── dnssec-zkt.8.pdf │ │ │ │ ├── zkt-conf.8 │ │ │ │ ├── zkt-conf.8.html │ │ │ │ ├── zkt-conf.8.org │ │ │ │ ├── zkt-conf.8.pdf │ │ │ │ ├── zkt-keyman.8 │ │ │ │ ├── zkt-keyman.8.html │ │ │ │ ├── zkt-keyman.8.pdf │ │ │ │ ├── zkt-ls.8 │ │ │ │ ├── zkt-ls.8.html │ │ │ │ ├── zkt-ls.8.pdf │ │ │ │ ├── zkt-signer.8 │ │ │ │ ├── zkt-signer.8.html │ │ │ │ └── zkt-signer.8.pdf │ │ │ ├── misc.c │ │ │ ├── misc.h │ │ │ ├── ncparse.c │ │ │ ├── ncparse.h │ │ │ ├── nscomm.c │ │ │ ├── nscomm.h │ │ │ ├── rollover.c │ │ │ ├── rollover.h │ │ │ ├── soaserial.c │ │ │ ├── soaserial.h │ │ │ ├── strlist.c │ │ │ ├── strlist.h │ │ │ ├── tags │ │ │ ├── tcap.c │ │ │ ├── tcap.h │ │ │ ├── zconf.c │ │ │ ├── zconf.h │ │ │ ├── zfparse.c │ │ │ ├── zfparse.h │ │ │ ├── zkt-conf.c │ │ │ ├── zkt-keyman.c │ │ │ ├── zkt-ls.c │ │ │ ├── zkt-signer.c │ │ │ ├── zkt-soaserial.c │ │ │ ├── zkt.c │ │ │ ├── zkt.h │ │ │ ├── zone.c │ │ │ └── zone.h │ │ ├── zone-edit.sh │ │ └── zone-edit.sh.in │ ├── doc │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── arm │ │ │ ├── Bv9ARM-book.xml │ │ │ ├── Bv9ARM.ch01.html │ │ │ ├── Bv9ARM.ch02.html │ │ │ ├── Bv9ARM.ch03.html │ │ │ ├── Bv9ARM.ch04.html │ │ │ ├── Bv9ARM.ch05.html │ │ │ ├── Bv9ARM.ch06.html │ │ │ ├── Bv9ARM.ch07.html │ │ │ ├── Bv9ARM.ch08.html │ │ │ ├── Bv9ARM.ch09.html │ │ │ ├── Bv9ARM.ch10.html │ │ │ ├── Bv9ARM.ch11.html │ │ │ ├── Bv9ARM.ch12.html │ │ │ ├── Bv9ARM.ch13.html │ │ │ ├── Bv9ARM.html │ │ │ ├── Bv9ARM.pdf │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── README-SGML │ │ │ ├── dnssec.xml │ │ │ ├── isc-logo.eps │ │ │ ├── isc-logo.pdf │ │ │ ├── latex-fixup.pl │ │ │ ├── libdns.xml │ │ │ ├── man.arpaname.html │ │ │ ├── man.ddns-confgen.html │ │ │ ├── man.dig.html │ │ │ ├── man.dnssec-checkds.html │ │ │ ├── man.dnssec-coverage.html │ │ │ ├── man.dnssec-dsfromkey.html │ │ │ ├── man.dnssec-keyfromlabel.html │ │ │ ├── man.dnssec-keygen.html │ │ │ ├── man.dnssec-revoke.html │ │ │ ├── man.dnssec-settime.html │ │ │ ├── man.dnssec-signzone.html │ │ │ ├── man.dnssec-verify.html │ │ │ ├── man.genrandom.html │ │ │ ├── man.host.html │ │ │ ├── man.isc-hmac-fixup.html │ │ │ ├── man.named-checkconf.html │ │ │ ├── man.named-checkzone.html │ │ │ ├── man.named-journalprint.html │ │ │ ├── man.named.html │ │ │ ├── man.nsec3hash.html │ │ │ ├── man.nsupdate.html │ │ │ ├── man.rndc-confgen.html │ │ │ ├── man.rndc.conf.html │ │ │ ├── man.rndc.html │ │ │ ├── managed-keys.xml │ │ │ ├── notes-wrapper.xml │ │ │ ├── notes.html │ │ │ ├── notes.pdf │ │ │ ├── notes.xml │ │ │ └── pkcs11.xml │ │ ├── doxygen │ │ │ ├── Doxyfile │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── doxygen-input-filter │ │ │ ├── doxygen-input-filter.in │ │ │ ├── isc-footer.html │ │ │ ├── isc-header.html │ │ │ └── mainpage │ │ ├── misc │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── dnssec │ │ │ ├── format-options.pl │ │ │ ├── ipv6 │ │ │ ├── migration │ │ │ ├── migration-4to9 │ │ │ ├── options │ │ │ ├── rfc-compliance │ │ │ ├── roadmap │ │ │ ├── sdb │ │ │ └── sort-options.pl │ │ └── xsl │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── copyright.xsl │ │ │ ├── isc-docbook-chunk.xsl │ │ │ ├── isc-docbook-chunk.xsl.in │ │ │ ├── isc-docbook-html.xsl │ │ │ ├── isc-docbook-html.xsl.in │ │ │ ├── isc-docbook-latex-mappings.xml │ │ │ ├── isc-docbook-latex.xsl │ │ │ ├── isc-docbook-latex.xsl.in │ │ │ ├── isc-docbook-text.xsl │ │ │ ├── isc-manpage.xsl │ │ │ ├── isc-manpage.xsl.in │ │ │ ├── isc-notes-html.xsl │ │ │ ├── isc-notes-html.xsl.in │ │ │ ├── isc-notes-latex.xsl │ │ │ ├── isc-notes-latex.xsl.in │ │ │ └── pre-latex.xsl │ ├── docutil │ │ ├── HTML_COPYRIGHT │ │ ├── MAN_COPYRIGHT │ │ ├── patch-db2latex-duplicate-template-bug │ │ ├── patch-db2latex-nested-param-bug │ │ └── patch-db2latex-xsltproc-title-bug │ ├── install-sh │ ├── isc-config.sh │ ├── isc-config.sh.1 │ ├── isc-config.sh.docbook │ ├── isc-config.sh.html │ ├── isc-config.sh.in │ ├── lib │ │ ├── Atffile │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── bind9 │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── api │ │ │ ├── check.c │ │ │ ├── getaddresses.c │ │ │ ├── include │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ └── bind9 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── check.h │ │ │ │ │ ├── getaddresses.h │ │ │ │ │ └── version.h │ │ │ ├── timestamp │ │ │ ├── version.c │ │ │ └── win32 │ │ │ │ ├── DLLMain.c │ │ │ │ ├── libbind9.def │ │ │ │ ├── libbind9.dsp.in │ │ │ │ ├── libbind9.dsw │ │ │ │ ├── libbind9.mak.in │ │ │ │ ├── libbind9.vcxproj.filters.in │ │ │ │ ├── libbind9.vcxproj.in │ │ │ │ ├── libbind9.vcxproj.user │ │ │ │ └── version.c │ │ ├── dns │ │ │ ├── Atffile │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── acache.c │ │ │ ├── acl.c │ │ │ ├── adb.c │ │ │ ├── api │ │ │ ├── byaddr.c │ │ │ ├── cache.c │ │ │ ├── callbacks.c │ │ │ ├── client.c │ │ │ ├── clientinfo.c │ │ │ ├── code.h │ │ │ ├── compress.c │ │ │ ├── db.c │ │ │ ├── dbiterator.c │ │ │ ├── dbtable.c │ │ │ ├── diff.c │ │ │ ├── dispatch.c │ │ │ ├── dlz.c │ │ │ ├── dns64.c │ │ │ ├── dnssec.c │ │ │ ├── ds.c │ │ │ ├── dst_api.c │ │ │ ├── dst_internal.h │ │ │ ├── dst_lib.c │ │ │ ├── dst_openssl.h │ │ │ ├── dst_parse.c │ │ │ ├── dst_parse.h │ │ │ ├── dst_result.c │ │ │ ├── ecdb.c │ │ │ ├── forward.c │ │ │ ├── gen │ │ │ ├── gen-unix.h │ │ │ ├── gen-win32.h │ │ │ ├── gen.c │ │ │ ├── gssapi_link.c │ │ │ ├── gssapictx.c │ │ │ ├── hmac_link.c │ │ │ ├── include │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── dns │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── acache.h │ │ │ │ │ ├── acl.h │ │ │ │ │ ├── adb.h │ │ │ │ │ ├── bit.h │ │ │ │ │ ├── byaddr.h │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── callbacks.h │ │ │ │ │ ├── cert.h │ │ │ │ │ ├── client.h │ │ │ │ │ ├── clientinfo.h │ │ │ │ │ ├── compress.h │ │ │ │ │ ├── db.h │ │ │ │ │ ├── dbiterator.h │ │ │ │ │ ├── dbtable.h │ │ │ │ │ ├── diff.h │ │ │ │ │ ├── dispatch.h │ │ │ │ │ ├── dlz.h │ │ │ │ │ ├── dlz_dlopen.h │ │ │ │ │ ├── dns64.h │ │ │ │ │ ├── dnssec.h │ │ │ │ │ ├── ds.h │ │ │ │ │ ├── ecdb.h │ │ │ │ │ ├── enumclass.h │ │ │ │ │ ├── enumtype.h │ │ │ │ │ ├── events.h │ │ │ │ │ ├── fixedname.h │ │ │ │ │ ├── forward.h │ │ │ │ │ ├── iptable.h │ │ │ │ │ ├── journal.h │ │ │ │ │ ├── keydata.h │ │ │ │ │ ├── keyflags.h │ │ │ │ │ ├── keytable.h │ │ │ │ │ ├── keyvalues.h │ │ │ │ │ ├── lib.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── lookup.h │ │ │ │ │ ├── master.h │ │ │ │ │ ├── masterdump.h │ │ │ │ │ ├── message.h │ │ │ │ │ ├── name.h │ │ │ │ │ ├── ncache.h │ │ │ │ │ ├── nsec.h │ │ │ │ │ ├── nsec3.h │ │ │ │ │ ├── opcode.h │ │ │ │ │ ├── order.h │ │ │ │ │ ├── peer.h │ │ │ │ │ ├── portlist.h │ │ │ │ │ ├── private.h │ │ │ │ │ ├── rbt.h │ │ │ │ │ ├── rcode.h │ │ │ │ │ ├── rdata.h │ │ │ │ │ ├── rdataclass.h │ │ │ │ │ ├── rdatalist.h │ │ │ │ │ ├── rdataset.h │ │ │ │ │ ├── rdatasetiter.h │ │ │ │ │ ├── rdataslab.h │ │ │ │ │ ├── rdatastruct.h │ │ │ │ │ ├── rdatatype.h │ │ │ │ │ ├── request.h │ │ │ │ │ ├── resolver.h │ │ │ │ │ ├── result.h │ │ │ │ │ ├── rootns.h │ │ │ │ │ ├── rpz.h │ │ │ │ │ ├── rriterator.h │ │ │ │ │ ├── rrl.h │ │ │ │ │ ├── sdb.h │ │ │ │ │ ├── sdlz.h │ │ │ │ │ ├── secalg.h │ │ │ │ │ ├── secproto.h │ │ │ │ │ ├── soa.h │ │ │ │ │ ├── ssu.h │ │ │ │ │ ├── stats.h │ │ │ │ │ ├── tcpmsg.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── timer.h │ │ │ │ │ ├── tkey.h │ │ │ │ │ ├── tsec.h │ │ │ │ │ ├── tsig.h │ │ │ │ │ ├── ttl.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── update.h │ │ │ │ │ ├── validator.h │ │ │ │ │ ├── version.h │ │ │ │ │ ├── view.h │ │ │ │ │ ├── xfrin.h │ │ │ │ │ ├── zone.h │ │ │ │ │ ├── zonekey.h │ │ │ │ │ └── zt.h │ │ │ │ └── dst │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── dst.h │ │ │ │ │ ├── gssapi.h │ │ │ │ │ ├── lib.h │ │ │ │ │ └── result.h │ │ │ ├── iptable.c │ │ │ ├── journal.c │ │ │ ├── key.c │ │ │ ├── keydata.c │ │ │ ├── keytable.c │ │ │ ├── lib.c │ │ │ ├── log.c │ │ │ ├── lookup.c │ │ │ ├── master.c │ │ │ ├── masterdump.c │ │ │ ├── message.c │ │ │ ├── name.c │ │ │ ├── ncache.c │ │ │ ├── nsec.c │ │ │ ├── nsec3.c │ │ │ ├── openssl_link.c │ │ │ ├── openssldh_link.c │ │ │ ├── openssldsa_link.c │ │ │ ├── opensslecdsa_link.c │ │ │ ├── opensslgost_link.c │ │ │ ├── opensslrsa_link.c │ │ │ ├── order.c │ │ │ ├── peer.c │ │ │ ├── portlist.c │ │ │ ├── private.c │ │ │ ├── rbt.c │ │ │ ├── rbtdb.c │ │ │ ├── rbtdb.h │ │ │ ├── rbtdb64.c │ │ │ ├── rbtdb64.h │ │ │ ├── rcode.c │ │ │ ├── rdata.c │ │ │ ├── rdata │ │ │ │ ├── any_255 │ │ │ │ │ ├── tsig_250.c │ │ │ │ │ └── tsig_250.h │ │ │ │ ├── ch_3 │ │ │ │ │ ├── a_1.c │ │ │ │ │ └── a_1.h │ │ │ │ ├── generic │ │ │ │ │ ├── afsdb_18.c │ │ │ │ │ ├── afsdb_18.h │ │ │ │ │ ├── caa_257.c │ │ │ │ │ ├── caa_257.h │ │ │ │ │ ├── cdnskey_60.c │ │ │ │ │ ├── cdnskey_60.h │ │ │ │ │ ├── cds_59.c │ │ │ │ │ ├── cds_59.h │ │ │ │ │ ├── cert_37.c │ │ │ │ │ ├── cert_37.h │ │ │ │ │ ├── cname_5.c │ │ │ │ │ ├── cname_5.h │ │ │ │ │ ├── dlv_32769.c │ │ │ │ │ ├── dlv_32769.h │ │ │ │ │ ├── dname_39.c │ │ │ │ │ ├── dname_39.h │ │ │ │ │ ├── dnskey_48.c │ │ │ │ │ ├── dnskey_48.h │ │ │ │ │ ├── ds_43.c │ │ │ │ │ ├── ds_43.h │ │ │ │ │ ├── eui48_108.c │ │ │ │ │ ├── eui48_108.h │ │ │ │ │ ├── eui64_109.c │ │ │ │ │ ├── eui64_109.h │ │ │ │ │ ├── gpos_27.c │ │ │ │ │ ├── gpos_27.h │ │ │ │ │ ├── hinfo_13.c │ │ │ │ │ ├── hinfo_13.h │ │ │ │ │ ├── hip_55.c │ │ │ │ │ ├── hip_55.h │ │ │ │ │ ├── ipseckey_45.c │ │ │ │ │ ├── ipseckey_45.h │ │ │ │ │ ├── isdn_20.c │ │ │ │ │ ├── isdn_20.h │ │ │ │ │ ├── key_25.c │ │ │ │ │ ├── key_25.h │ │ │ │ │ ├── keydata_65533.c │ │ │ │ │ ├── keydata_65533.h │ │ │ │ │ ├── l32_105.c │ │ │ │ │ ├── l32_105.h │ │ │ │ │ ├── l64_106.c │ │ │ │ │ ├── l64_106.h │ │ │ │ │ ├── loc_29.c │ │ │ │ │ ├── loc_29.h │ │ │ │ │ ├── lp_107.c │ │ │ │ │ ├── lp_107.h │ │ │ │ │ ├── mb_7.c │ │ │ │ │ ├── mb_7.h │ │ │ │ │ ├── md_3.c │ │ │ │ │ ├── md_3.h │ │ │ │ │ ├── mf_4.c │ │ │ │ │ ├── mf_4.h │ │ │ │ │ ├── mg_8.c │ │ │ │ │ ├── mg_8.h │ │ │ │ │ ├── minfo_14.c │ │ │ │ │ ├── minfo_14.h │ │ │ │ │ ├── mr_9.c │ │ │ │ │ ├── mr_9.h │ │ │ │ │ ├── mx_15.c │ │ │ │ │ ├── mx_15.h │ │ │ │ │ ├── naptr_35.c │ │ │ │ │ ├── naptr_35.h │ │ │ │ │ ├── nid_104.c │ │ │ │ │ ├── nid_104.h │ │ │ │ │ ├── ns_2.c │ │ │ │ │ ├── ns_2.h │ │ │ │ │ ├── nsec3_50.c │ │ │ │ │ ├── nsec3_50.h │ │ │ │ │ ├── nsec3param_51.c │ │ │ │ │ ├── nsec3param_51.h │ │ │ │ │ ├── nsec_47.c │ │ │ │ │ ├── nsec_47.h │ │ │ │ │ ├── null_10.c │ │ │ │ │ ├── null_10.h │ │ │ │ │ ├── nxt_30.c │ │ │ │ │ ├── nxt_30.h │ │ │ │ │ ├── openpgpkey_61.c │ │ │ │ │ ├── openpgpkey_61.h │ │ │ │ │ ├── opt_41.c │ │ │ │ │ ├── opt_41.h │ │ │ │ │ ├── proforma.c │ │ │ │ │ ├── proforma.h │ │ │ │ │ ├── ptr_12.c │ │ │ │ │ ├── ptr_12.h │ │ │ │ │ ├── rp_17.c │ │ │ │ │ ├── rp_17.h │ │ │ │ │ ├── rrsig_46.c │ │ │ │ │ ├── rrsig_46.h │ │ │ │ │ ├── rt_21.c │ │ │ │ │ ├── rt_21.h │ │ │ │ │ ├── sig_24.c │ │ │ │ │ ├── sig_24.h │ │ │ │ │ ├── soa_6.c │ │ │ │ │ ├── soa_6.h │ │ │ │ │ ├── spf_99.c │ │ │ │ │ ├── spf_99.h │ │ │ │ │ ├── sshfp_44.c │ │ │ │ │ ├── sshfp_44.h │ │ │ │ │ ├── tkey_249.c │ │ │ │ │ ├── tkey_249.h │ │ │ │ │ ├── tlsa_52.c │ │ │ │ │ ├── tlsa_52.h │ │ │ │ │ ├── txt_16.c │ │ │ │ │ ├── txt_16.h │ │ │ │ │ ├── unspec_103.c │ │ │ │ │ ├── unspec_103.h │ │ │ │ │ ├── uri_256.c │ │ │ │ │ ├── uri_256.h │ │ │ │ │ ├── x25_19.c │ │ │ │ │ └── x25_19.h │ │ │ │ ├── hs_4 │ │ │ │ │ ├── a_1.c │ │ │ │ │ └── a_1.h │ │ │ │ ├── in_1 │ │ │ │ │ ├── a6_38.c │ │ │ │ │ ├── a6_38.h │ │ │ │ │ ├── a_1.c │ │ │ │ │ ├── a_1.h │ │ │ │ │ ├── aaaa_28.c │ │ │ │ │ ├── aaaa_28.h │ │ │ │ │ ├── apl_42.c │ │ │ │ │ ├── apl_42.h │ │ │ │ │ ├── dhcid_49.c │ │ │ │ │ ├── dhcid_49.h │ │ │ │ │ ├── kx_36.c │ │ │ │ │ ├── kx_36.h │ │ │ │ │ ├── nsap-ptr_23.c │ │ │ │ │ ├── nsap-ptr_23.h │ │ │ │ │ ├── nsap_22.c │ │ │ │ │ ├── nsap_22.h │ │ │ │ │ ├── px_26.c │ │ │ │ │ ├── px_26.h │ │ │ │ │ ├── srv_33.c │ │ │ │ │ ├── srv_33.h │ │ │ │ │ ├── wks_11.c │ │ │ │ │ └── wks_11.h │ │ │ │ ├── rdatastructpre.h │ │ │ │ └── rdatastructsuf.h │ │ │ ├── rdatalist.c │ │ │ ├── rdatalist_p.h │ │ │ ├── rdataset.c │ │ │ ├── rdatasetiter.c │ │ │ ├── rdataslab.c │ │ │ ├── request.c │ │ │ ├── resolver.c │ │ │ ├── result.c │ │ │ ├── rootns.c │ │ │ ├── rpz.c │ │ │ ├── rriterator.c │ │ │ ├── rrl.c │ │ │ ├── sdb.c │ │ │ ├── sdlz.c │ │ │ ├── soa.c │ │ │ ├── spnego.asn1 │ │ │ ├── spnego.c │ │ │ ├── spnego.h │ │ │ ├── spnego_asn1.c │ │ │ ├── spnego_asn1.pl │ │ │ ├── ssu.c │ │ │ ├── ssu_external.c │ │ │ ├── stats.c │ │ │ ├── tcpmsg.c │ │ │ ├── tests │ │ │ │ ├── Atffile │ │ │ │ ├── Kdh.+002+18602.key │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── db_test.c │ │ │ │ ├── dbdiff_test.c │ │ │ │ ├── dbiterator_test.c │ │ │ │ ├── dbversion_test.c │ │ │ │ ├── dh_test.c │ │ │ │ ├── dispatch_test.c │ │ │ │ ├── dnstest.c │ │ │ │ ├── dnstest.h │ │ │ │ ├── master_test.c │ │ │ │ ├── mkraw.pl │ │ │ │ ├── name_test.c │ │ │ │ ├── nsec3_test.c │ │ │ │ ├── private_test.c │ │ │ │ ├── rdata_test.c │ │ │ │ ├── rdataset_test.c │ │ │ │ ├── testdata │ │ │ │ │ ├── dbiterator │ │ │ │ │ │ ├── zone1.data │ │ │ │ │ │ └── zone2.data │ │ │ │ │ ├── diff │ │ │ │ │ │ ├── zone1.data │ │ │ │ │ │ ├── zone2.data │ │ │ │ │ │ └── zone3.data │ │ │ │ │ ├── master │ │ │ │ │ │ ├── master1.data │ │ │ │ │ │ ├── master10.data │ │ │ │ │ │ ├── master11.data │ │ │ │ │ │ ├── master12.data.in │ │ │ │ │ │ ├── master13.data.in │ │ │ │ │ │ ├── master14.data.in │ │ │ │ │ │ ├── master15.data │ │ │ │ │ │ ├── master16.data │ │ │ │ │ │ ├── master17.data │ │ │ │ │ │ ├── master2.data │ │ │ │ │ │ ├── master3.data │ │ │ │ │ │ ├── master4.data │ │ │ │ │ │ ├── master5.data │ │ │ │ │ │ ├── master6.data │ │ │ │ │ │ ├── master7.data │ │ │ │ │ │ ├── master8.data │ │ │ │ │ │ └── master9.data │ │ │ │ │ ├── nsec3 │ │ │ │ │ │ ├── 1024.db │ │ │ │ │ │ ├── 2048.db │ │ │ │ │ │ ├── 4096.db │ │ │ │ │ │ ├── min-1024.db │ │ │ │ │ │ └── min-2048.db │ │ │ │ │ └── zt │ │ │ │ │ │ └── zone1.db │ │ │ │ ├── time_test.c │ │ │ │ ├── update_test.c │ │ │ │ ├── zonemgr_test.c │ │ │ │ └── zt_test.c │ │ │ ├── time.c │ │ │ ├── timer.c │ │ │ ├── timestamp │ │ │ ├── tkey.c │ │ │ ├── tsec.c │ │ │ ├── tsig.c │ │ │ ├── ttl.c │ │ │ ├── update.c │ │ │ ├── validator.c │ │ │ ├── version.c │ │ │ ├── view.c │ │ │ ├── win32 │ │ │ │ ├── DLLMain.c │ │ │ │ ├── gen.dsp.in │ │ │ │ ├── gen.dsw │ │ │ │ ├── gen.mak.in │ │ │ │ ├── gen.vcxproj.filters.in │ │ │ │ ├── gen.vcxproj.in │ │ │ │ ├── gen.vcxproj.user │ │ │ │ ├── libdns.def.in │ │ │ │ ├── libdns.dsp.in │ │ │ │ ├── libdns.dsw │ │ │ │ ├── libdns.mak.in │ │ │ │ ├── libdns.vcxproj.filters.in │ │ │ │ ├── libdns.vcxproj.in │ │ │ │ ├── libdns.vcxproj.user │ │ │ │ └── version.c │ │ │ ├── xfrin.c │ │ │ ├── zone.c │ │ │ ├── zonekey.c │ │ │ └── zt.c │ │ ├── export │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── dns │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ └── include │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── dns │ │ │ │ │ ├── Makefile │ │ │ │ │ └── Makefile.in │ │ │ │ │ └── dst │ │ │ │ │ ├── Makefile │ │ │ │ │ └── Makefile.in │ │ │ ├── irs │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ └── include │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── irs │ │ │ │ │ ├── Makefile │ │ │ │ │ └── Makefile.in │ │ │ ├── isc │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── include │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── isc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── bind9.h │ │ │ │ ├── nls │ │ │ │ │ ├── Makefile │ │ │ │ │ └── Makefile.in │ │ │ │ ├── nothreads │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── include │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── isc │ │ │ │ │ │ └── Makefile.in │ │ │ │ ├── pthreads │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── include │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── isc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── Makefile.in │ │ │ │ └── unix │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── include │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── isc │ │ │ │ │ ├── Makefile │ │ │ │ │ └── Makefile.in │ │ │ ├── isccfg │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ └── include │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── isccfg │ │ │ │ │ ├── Makefile │ │ │ │ │ └── Makefile.in │ │ │ └── samples │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile-postinstall │ │ │ │ ├── Makefile-postinstall.in │ │ │ │ ├── Makefile.in │ │ │ │ ├── nsprobe.c │ │ │ │ ├── sample-async.c │ │ │ │ ├── sample-gai.c │ │ │ │ ├── sample-request.c │ │ │ │ ├── sample-update.c │ │ │ │ └── sample.c │ │ ├── irs │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── api │ │ │ ├── context.c │ │ │ ├── dnsconf.c │ │ │ ├── gai_strerror.c │ │ │ ├── getaddrinfo.c │ │ │ ├── getnameinfo.c │ │ │ ├── include │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ └── irs │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── context.h │ │ │ │ │ ├── dnsconf.h │ │ │ │ │ ├── netdb.h │ │ │ │ │ ├── netdb.h.in │ │ │ │ │ ├── platform.h │ │ │ │ │ ├── platform.h.in │ │ │ │ │ ├── resconf.h │ │ │ │ │ ├── types.h │ │ │ │ │ └── version.h │ │ │ ├── resconf.c │ │ │ └── version.c │ │ ├── isc │ │ │ ├── Atffile │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── alpha │ │ │ │ ├── Makefile.in │ │ │ │ └── include │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── isc │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── atomic.h │ │ │ ├── api │ │ │ ├── app_api.c │ │ │ ├── assertions.c │ │ │ ├── backtrace-emptytbl.c │ │ │ ├── backtrace.c │ │ │ ├── base32.c │ │ │ ├── base64.c │ │ │ ├── bitstring.c │ │ │ ├── buffer.c │ │ │ ├── bufferlist.c │ │ │ ├── commandline.c │ │ │ ├── counter.c │ │ │ ├── entropy.c │ │ │ ├── error.c │ │ │ ├── event.c │ │ │ ├── fsaccess.c │ │ │ ├── hash.c │ │ │ ├── heap.c │ │ │ ├── hex.c │ │ │ ├── hmacmd5.c │ │ │ ├── hmacsha.c │ │ │ ├── httpd.c │ │ │ ├── ia64 │ │ │ │ ├── Makefile.in │ │ │ │ └── include │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── isc │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── atomic.h │ │ │ ├── include │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ └── isc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── app.h │ │ │ │ │ ├── assertions.h │ │ │ │ │ ├── backtrace.h │ │ │ │ │ ├── base32.h │ │ │ │ │ ├── base64.h │ │ │ │ │ ├── bind9.h │ │ │ │ │ ├── bitstring.h │ │ │ │ │ ├── boolean.h │ │ │ │ │ ├── buffer.h │ │ │ │ │ ├── bufferlist.h │ │ │ │ │ ├── commandline.h │ │ │ │ │ ├── counter.h │ │ │ │ │ ├── entropy.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── event.h │ │ │ │ │ ├── eventclass.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── formatcheck.h │ │ │ │ │ ├── fsaccess.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── heap.h │ │ │ │ │ ├── hex.h │ │ │ │ │ ├── hmacmd5.h │ │ │ │ │ ├── hmacsha.h │ │ │ │ │ ├── httpd.h │ │ │ │ │ ├── interfaceiter.h │ │ │ │ │ ├── ipv6.h │ │ │ │ │ ├── iterated_hash.h │ │ │ │ │ ├── lang.h │ │ │ │ │ ├── lex.h │ │ │ │ │ ├── lfsr.h │ │ │ │ │ ├── lib.h │ │ │ │ │ ├── list.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── magic.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── mem.h │ │ │ │ │ ├── msgcat.h │ │ │ │ │ ├── msgs.h │ │ │ │ │ ├── mutexblock.h │ │ │ │ │ ├── namespace.h │ │ │ │ │ ├── netaddr.h │ │ │ │ │ ├── netscope.h │ │ │ │ │ ├── ondestroy.h │ │ │ │ │ ├── os.h │ │ │ │ │ ├── parseint.h │ │ │ │ │ ├── platform.h │ │ │ │ │ ├── platform.h.in │ │ │ │ │ ├── pool.h │ │ │ │ │ ├── portset.h │ │ │ │ │ ├── print.h │ │ │ │ │ ├── queue.h │ │ │ │ │ ├── quota.h │ │ │ │ │ ├── radix.h │ │ │ │ │ ├── random.h │ │ │ │ │ ├── ratelimiter.h │ │ │ │ │ ├── refcount.h │ │ │ │ │ ├── regex.h │ │ │ │ │ ├── region.h │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── result.h │ │ │ │ │ ├── resultclass.h │ │ │ │ │ ├── rwlock.h │ │ │ │ │ ├── safe.h │ │ │ │ │ ├── serial.h │ │ │ │ │ ├── sha1.h │ │ │ │ │ ├── sha2.h │ │ │ │ │ ├── sockaddr.h │ │ │ │ │ ├── socket.h │ │ │ │ │ ├── stats.h │ │ │ │ │ ├── stdio.h │ │ │ │ │ ├── stdlib.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── symtab.h │ │ │ │ │ ├── task.h │ │ │ │ │ ├── taskpool.h │ │ │ │ │ ├── timer.h │ │ │ │ │ ├── tm.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── util.h │ │ │ │ │ ├── version.h │ │ │ │ │ └── xml.h │ │ │ ├── inet_aton.c │ │ │ ├── inet_ntop.c │ │ │ ├── inet_pton.c │ │ │ ├── iterated_hash.c │ │ │ ├── lex.c │ │ │ ├── lfsr.c │ │ │ ├── lib.c │ │ │ ├── log.c │ │ │ ├── md5.c │ │ │ ├── mem.c │ │ │ ├── mem_api.c │ │ │ ├── mips │ │ │ │ ├── Makefile.in │ │ │ │ └── include │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── isc │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── atomic.h │ │ │ ├── mutexblock.c │ │ │ ├── netaddr.c │ │ │ ├── netscope.c │ │ │ ├── nls │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ └── msgcat.c │ │ │ ├── noatomic │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ └── include │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── isc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── atomic.h │ │ │ ├── nothreads │ │ │ │ ├── Makefile.in │ │ │ │ ├── condition.c │ │ │ │ ├── include │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── isc │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── condition.h │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ ├── once.h │ │ │ │ │ │ └── thread.h │ │ │ │ ├── mutex.c │ │ │ │ └── thread.c │ │ │ ├── ondestroy.c │ │ │ ├── parseint.c │ │ │ ├── pool.c │ │ │ ├── portset.c │ │ │ ├── powerpc │ │ │ │ ├── Makefile.in │ │ │ │ └── include │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── isc │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── atomic.h │ │ │ ├── print.c │ │ │ ├── pthreads │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── condition.c │ │ │ │ ├── include │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── isc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── condition.h │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ ├── once.h │ │ │ │ │ │ └── thread.h │ │ │ │ ├── mutex.c │ │ │ │ └── thread.c │ │ │ ├── quota.c │ │ │ ├── radix.c │ │ │ ├── random.c │ │ │ ├── ratelimiter.c │ │ │ ├── refcount.c │ │ │ ├── regex.c │ │ │ ├── region.c │ │ │ ├── result.c │ │ │ ├── rwlock.c │ │ │ ├── safe.c │ │ │ ├── serial.c │ │ │ ├── sha1.c │ │ │ ├── sha2.c │ │ │ ├── sockaddr.c │ │ │ ├── socket_api.c │ │ │ ├── sparc64 │ │ │ │ ├── Makefile.in │ │ │ │ └── include │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── isc │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── atomic.h │ │ │ ├── stats.c │ │ │ ├── string.c │ │ │ ├── strtoul.c │ │ │ ├── symtab.c │ │ │ ├── task.c │ │ │ ├── task_api.c │ │ │ ├── task_p.h │ │ │ ├── taskpool.c │ │ │ ├── tests │ │ │ │ ├── Atffile │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── counter_test.c │ │ │ │ ├── hash_test.c │ │ │ │ ├── isctest.c │ │ │ │ ├── isctest.h │ │ │ │ ├── lex_test.c │ │ │ │ ├── parse_test.c │ │ │ │ ├── pool_test.c │ │ │ │ ├── print_test.c │ │ │ │ ├── queue_test.c │ │ │ │ ├── radix_test.c │ │ │ │ ├── regex_test.c │ │ │ │ ├── safe_test.c │ │ │ │ ├── sockaddr_test.c │ │ │ │ ├── socket_test.c │ │ │ │ ├── symtab_test.c │ │ │ │ ├── task_test.c │ │ │ │ ├── taskpool_test.c │ │ │ │ └── time_test.c │ │ │ ├── timer.c │ │ │ ├── timer_api.c │ │ │ ├── timer_p.h │ │ │ ├── timestamp │ │ │ ├── tm.c │ │ │ ├── unix │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── app.c │ │ │ │ ├── dir.c │ │ │ │ ├── entropy.c │ │ │ │ ├── errno2result.c │ │ │ │ ├── errno2result.h │ │ │ │ ├── file.c │ │ │ │ ├── fsaccess.c │ │ │ │ ├── ifiter_getifaddrs.c │ │ │ │ ├── ifiter_ioctl.c │ │ │ │ ├── ifiter_sysctl.c │ │ │ │ ├── include │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── isc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── dir.h │ │ │ │ │ │ ├── int.h │ │ │ │ │ │ ├── keyboard.h │ │ │ │ │ │ ├── net.h │ │ │ │ │ │ ├── netdb.h │ │ │ │ │ │ ├── offset.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── stdtime.h │ │ │ │ │ │ ├── strerror.h │ │ │ │ │ │ ├── syslog.h │ │ │ │ │ │ └── time.h │ │ │ │ ├── interfaceiter.c │ │ │ │ ├── ipv6.c │ │ │ │ ├── keyboard.c │ │ │ │ ├── net.c │ │ │ │ ├── os.c │ │ │ │ ├── resource.c │ │ │ │ ├── socket.c │ │ │ │ ├── socket_p.h │ │ │ │ ├── stdio.c │ │ │ │ ├── stdtime.c │ │ │ │ ├── strerror.c │ │ │ │ ├── syslog.c │ │ │ │ └── time.c │ │ │ ├── version.c │ │ │ ├── win32 │ │ │ │ ├── DLLMain.c │ │ │ │ ├── Makefile.in │ │ │ │ ├── app.c │ │ │ │ ├── condition.c │ │ │ │ ├── dir.c │ │ │ │ ├── entropy.c │ │ │ │ ├── errno2result.c │ │ │ │ ├── errno2result.h │ │ │ │ ├── file.c │ │ │ │ ├── fsaccess.c │ │ │ │ ├── include │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── isc │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ ├── bind_registry.h │ │ │ │ │ │ ├── bindevt.h │ │ │ │ │ │ ├── condition.h │ │ │ │ │ │ ├── dir.h │ │ │ │ │ │ ├── int.h │ │ │ │ │ │ ├── ipv6.h │ │ │ │ │ │ ├── keyboard.h │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ ├── net.h │ │ │ │ │ │ ├── netdb.h │ │ │ │ │ │ ├── ntgroups.h │ │ │ │ │ │ ├── ntpaths.h │ │ │ │ │ │ ├── offset.h │ │ │ │ │ │ ├── once.h │ │ │ │ │ │ ├── platform.h.in │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── stdtime.h │ │ │ │ │ │ ├── strerror.h │ │ │ │ │ │ ├── syslog.h │ │ │ │ │ │ ├── thread.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ └── win32os.h │ │ │ │ ├── interfaceiter.c │ │ │ │ ├── ipv6.c │ │ │ │ ├── keyboard.c │ │ │ │ ├── libgen.h │ │ │ │ ├── libisc.def.in │ │ │ │ ├── libisc.dsp.in │ │ │ │ ├── libisc.dsw │ │ │ │ ├── libisc.mak.in │ │ │ │ ├── libisc.vcxproj.filters.in │ │ │ │ ├── libisc.vcxproj.in │ │ │ │ ├── libisc.vcxproj.user │ │ │ │ ├── net.c │ │ │ │ ├── netdb.h │ │ │ │ ├── ntgroups.c │ │ │ │ ├── ntpaths.c │ │ │ │ ├── once.c │ │ │ │ ├── os.c │ │ │ │ ├── resource.c │ │ │ │ ├── socket.c │ │ │ │ ├── stdio.c │ │ │ │ ├── stdtime.c │ │ │ │ ├── strerror.c │ │ │ │ ├── syslog.c │ │ │ │ ├── syslog.h │ │ │ │ ├── thread.c │ │ │ │ ├── time.c │ │ │ │ ├── unistd.h │ │ │ │ ├── version.c │ │ │ │ └── win32os.c │ │ │ ├── x86_32 │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ └── include │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── isc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── atomic.h │ │ │ └── x86_64 │ │ │ │ ├── Makefile.in │ │ │ │ └── include │ │ │ │ ├── Makefile.in │ │ │ │ └── isc │ │ │ │ ├── Makefile.in │ │ │ │ └── atomic.h │ │ ├── isccc │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── alist.c │ │ │ ├── api │ │ │ ├── base64.c │ │ │ ├── cc.c │ │ │ ├── ccmsg.c │ │ │ ├── include │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ └── isccc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── alist.h │ │ │ │ │ ├── base64.h │ │ │ │ │ ├── cc.h │ │ │ │ │ ├── ccmsg.h │ │ │ │ │ ├── events.h │ │ │ │ │ ├── lib.h │ │ │ │ │ ├── result.h │ │ │ │ │ ├── sexpr.h │ │ │ │ │ ├── symtab.h │ │ │ │ │ ├── symtype.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── util.h │ │ │ │ │ └── version.h │ │ │ ├── lib.c │ │ │ ├── result.c │ │ │ ├── sexpr.c │ │ │ ├── symtab.c │ │ │ ├── timestamp │ │ │ ├── version.c │ │ │ └── win32 │ │ │ │ ├── DLLMain.c │ │ │ │ ├── libisccc.def │ │ │ │ ├── libisccc.dsp.in │ │ │ │ ├── libisccc.dsw │ │ │ │ ├── libisccc.mak.in │ │ │ │ ├── libisccc.vcxproj.filters.in │ │ │ │ ├── libisccc.vcxproj.in │ │ │ │ ├── libisccc.vcxproj.user │ │ │ │ └── version.c │ │ ├── isccfg │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── aclconf.c │ │ │ ├── api │ │ │ ├── dnsconf.c │ │ │ ├── include │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ └── isccfg │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── aclconf.h │ │ │ │ │ ├── cfg.h │ │ │ │ │ ├── dnsconf.h │ │ │ │ │ ├── grammar.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── namedconf.h │ │ │ │ │ └── version.h │ │ │ ├── log.c │ │ │ ├── namedconf.c │ │ │ ├── parser.c │ │ │ ├── timestamp │ │ │ ├── version.c │ │ │ └── win32 │ │ │ │ ├── DLLMain.c │ │ │ │ ├── libisccfg.def │ │ │ │ ├── libisccfg.dsp.in │ │ │ │ ├── libisccfg.dsw │ │ │ │ ├── libisccfg.mak.in │ │ │ │ ├── libisccfg.vcxproj.filters.in │ │ │ │ ├── libisccfg.vcxproj.in │ │ │ │ ├── libisccfg.vcxproj.user │ │ │ │ └── version.c │ │ ├── lwres │ │ │ ├── Atffile │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── api │ │ │ ├── assert_p.h │ │ │ ├── compat.c │ │ │ ├── context.c │ │ │ ├── context_p.h │ │ │ ├── gai_strerror.c │ │ │ ├── getaddrinfo.c │ │ │ ├── gethost.c │ │ │ ├── getipnode.c │ │ │ ├── getnameinfo.c │ │ │ ├── getrrset.c │ │ │ ├── herror.c │ │ │ ├── include │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ └── lwres │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── context.h │ │ │ │ │ ├── int.h │ │ │ │ │ ├── ipv6.h │ │ │ │ │ ├── lang.h │ │ │ │ │ ├── list.h │ │ │ │ │ ├── lwbuffer.h │ │ │ │ │ ├── lwpacket.h │ │ │ │ │ ├── lwres.h │ │ │ │ │ ├── netdb.h │ │ │ │ │ ├── netdb.h.in │ │ │ │ │ ├── platform.h │ │ │ │ │ ├── platform.h.in │ │ │ │ │ ├── result.h │ │ │ │ │ ├── stdlib.h │ │ │ │ │ ├── string.h │ │ │ │ │ └── version.h │ │ │ ├── lwbuffer.c │ │ │ ├── lwconfig.c │ │ │ ├── lwinetaton.c │ │ │ ├── lwinetntop.c │ │ │ ├── lwinetpton.c │ │ │ ├── lwpacket.c │ │ │ ├── lwres_gabn.c │ │ │ ├── lwres_gnba.c │ │ │ ├── lwres_grbn.c │ │ │ ├── lwres_noop.c │ │ │ ├── lwresutil.c │ │ │ ├── man │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── lwres.3 │ │ │ │ ├── lwres.docbook │ │ │ │ ├── lwres.html │ │ │ │ ├── lwres_buffer.3 │ │ │ │ ├── lwres_buffer.docbook │ │ │ │ ├── lwres_buffer.html │ │ │ │ ├── lwres_config.3 │ │ │ │ ├── lwres_config.docbook │ │ │ │ ├── lwres_config.html │ │ │ │ ├── lwres_context.3 │ │ │ │ ├── lwres_context.docbook │ │ │ │ ├── lwres_context.html │ │ │ │ ├── lwres_gabn.3 │ │ │ │ ├── lwres_gabn.docbook │ │ │ │ ├── lwres_gabn.html │ │ │ │ ├── lwres_gai_strerror.3 │ │ │ │ ├── lwres_gai_strerror.docbook │ │ │ │ ├── lwres_gai_strerror.html │ │ │ │ ├── lwres_getaddrinfo.3 │ │ │ │ ├── lwres_getaddrinfo.docbook │ │ │ │ ├── lwres_getaddrinfo.html │ │ │ │ ├── lwres_gethostent.3 │ │ │ │ ├── lwres_gethostent.docbook │ │ │ │ ├── lwres_gethostent.html │ │ │ │ ├── lwres_getipnode.3 │ │ │ │ ├── lwres_getipnode.docbook │ │ │ │ ├── lwres_getipnode.html │ │ │ │ ├── lwres_getnameinfo.3 │ │ │ │ ├── lwres_getnameinfo.docbook │ │ │ │ ├── lwres_getnameinfo.html │ │ │ │ ├── lwres_getrrsetbyname.3 │ │ │ │ ├── lwres_getrrsetbyname.docbook │ │ │ │ ├── lwres_getrrsetbyname.html │ │ │ │ ├── lwres_gnba.3 │ │ │ │ ├── lwres_gnba.docbook │ │ │ │ ├── lwres_gnba.html │ │ │ │ ├── lwres_hstrerror.3 │ │ │ │ ├── lwres_hstrerror.docbook │ │ │ │ ├── lwres_hstrerror.html │ │ │ │ ├── lwres_inetntop.3 │ │ │ │ ├── lwres_inetntop.docbook │ │ │ │ ├── lwres_inetntop.html │ │ │ │ ├── lwres_noop.3 │ │ │ │ ├── lwres_noop.docbook │ │ │ │ ├── lwres_noop.html │ │ │ │ ├── lwres_packet.3 │ │ │ │ ├── lwres_packet.docbook │ │ │ │ ├── lwres_packet.html │ │ │ │ ├── lwres_resutil.3 │ │ │ │ ├── lwres_resutil.docbook │ │ │ │ └── lwres_resutil.html │ │ │ ├── print.c │ │ │ ├── print_p.h │ │ │ ├── tests │ │ │ │ ├── Atffile │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── config_test.c │ │ │ │ └── testdata │ │ │ │ │ └── link-local.conf │ │ │ ├── timestamp │ │ │ ├── unix │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ └── include │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── lwres │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── net.h │ │ │ ├── version.c │ │ │ └── win32 │ │ │ │ ├── DLLMain.c │ │ │ │ ├── Makefile.in │ │ │ │ ├── include │ │ │ │ ├── Makefile.in │ │ │ │ └── lwres │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── int.h │ │ │ │ │ ├── net.h │ │ │ │ │ ├── netdb.h │ │ │ │ │ └── platform.h │ │ │ │ ├── liblwres.def │ │ │ │ ├── liblwres.dsp.in │ │ │ │ ├── liblwres.dsw │ │ │ │ ├── liblwres.mak.in │ │ │ │ ├── liblwres.vcxproj.filters.in │ │ │ │ ├── liblwres.vcxproj.in │ │ │ │ ├── liblwres.vcxproj.user │ │ │ │ ├── lwconfig.c │ │ │ │ ├── socket.c │ │ │ │ └── version.c │ │ ├── tests │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── T_testlist.imp │ │ │ ├── include │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ └── tests │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── t_api.h │ │ │ ├── t_api.c │ │ │ ├── timestamp │ │ │ └── win32 │ │ │ │ ├── DLLMain.c │ │ │ │ ├── libtests.def │ │ │ │ ├── libtests.dsp.in │ │ │ │ ├── libtests.dsw │ │ │ │ ├── libtests.mak.in │ │ │ │ ├── libtests.vcxproj.filters.in │ │ │ │ ├── libtests.vcxproj.in │ │ │ │ └── libtests.vcxproj.user │ │ └── win32 │ │ │ └── bindevt │ │ │ ├── bindevt.c │ │ │ ├── bindevt.dsp.in │ │ │ ├── bindevt.dsw │ │ │ ├── bindevt.mak.in │ │ │ ├── bindevt.mc │ │ │ ├── bindevt.vcxproj.filters.in │ │ │ ├── bindevt.vcxproj.in │ │ │ └── bindevt.vcxproj.user │ ├── libtool │ ├── libtool.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── ltmain.sh │ ├── make │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── includes │ │ ├── includes.in │ │ ├── mkdep │ │ ├── mkdep.in │ │ ├── rules │ │ └── rules.in │ ├── mkinstalldirs │ ├── srcid │ ├── unit │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── README │ │ ├── atf-src │ │ │ ├── AUTHORS │ │ │ ├── Atffile │ │ │ ├── COPYING │ │ │ ├── INSTALL │ │ │ ├── Kyuafile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── aclocal.m4 │ │ │ ├── admin │ │ │ │ ├── Makefile.am.inc │ │ │ │ ├── check-style-c.awk │ │ │ │ ├── check-style-common.awk │ │ │ │ ├── check-style-cpp.awk │ │ │ │ ├── check-style-man.awk │ │ │ │ ├── check-style-shell.awk │ │ │ │ ├── check-style.sh │ │ │ │ ├── compile │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── depcomp │ │ │ │ ├── install-sh │ │ │ │ ├── ltmain.sh │ │ │ │ └── missing │ │ │ ├── atf-c++.hpp │ │ │ ├── atf-c++ │ │ │ │ ├── Atffile │ │ │ │ ├── Kyuafile │ │ │ │ ├── Makefile.am.inc │ │ │ │ ├── atf-c++-api.3 │ │ │ │ ├── atf-c++.m4 │ │ │ │ ├── atf-c++.pc.in │ │ │ │ ├── atf_c++_test.cpp │ │ │ │ ├── build.cpp │ │ │ │ ├── build.hpp │ │ │ │ ├── build_test.cpp │ │ │ │ ├── check.cpp │ │ │ │ ├── check.hpp │ │ │ │ ├── check_test.cpp │ │ │ │ ├── config.cpp │ │ │ │ ├── config.hpp │ │ │ │ ├── config_test.cpp │ │ │ │ ├── detail │ │ │ │ │ ├── Atffile │ │ │ │ │ ├── Kyuafile │ │ │ │ │ ├── Makefile.am.inc │ │ │ │ │ ├── application.cpp │ │ │ │ │ ├── application.hpp │ │ │ │ │ ├── application_test.cpp │ │ │ │ │ ├── auto_array.hpp │ │ │ │ │ ├── auto_array_test.cpp │ │ │ │ │ ├── env.cpp │ │ │ │ │ ├── env.hpp │ │ │ │ │ ├── env_test.cpp │ │ │ │ │ ├── exceptions.cpp │ │ │ │ │ ├── exceptions.hpp │ │ │ │ │ ├── exceptions_test.cpp │ │ │ │ │ ├── expand.cpp │ │ │ │ │ ├── expand.hpp │ │ │ │ │ ├── expand_test.cpp │ │ │ │ │ ├── fs.cpp │ │ │ │ │ ├── fs.hpp │ │ │ │ │ ├── fs_test.cpp │ │ │ │ │ ├── parser.cpp │ │ │ │ │ ├── parser.hpp │ │ │ │ │ ├── parser_test.cpp │ │ │ │ │ ├── process.cpp │ │ │ │ │ ├── process.hpp │ │ │ │ │ ├── process_test.cpp │ │ │ │ │ ├── sanity.hpp │ │ │ │ │ ├── sanity_test.cpp │ │ │ │ │ ├── test_helpers.cpp │ │ │ │ │ ├── test_helpers.hpp │ │ │ │ │ ├── text.cpp │ │ │ │ │ ├── text.hpp │ │ │ │ │ ├── text_test.cpp │ │ │ │ │ ├── ui.cpp │ │ │ │ │ ├── ui.hpp │ │ │ │ │ └── ui_test.cpp │ │ │ │ ├── macros.hpp │ │ │ │ ├── macros_hpp_test.cpp │ │ │ │ ├── macros_test.cpp │ │ │ │ ├── noncopyable.hpp │ │ │ │ ├── pkg_config_test.sh │ │ │ │ ├── tests.cpp │ │ │ │ ├── tests.hpp │ │ │ │ ├── tests_test.cpp │ │ │ │ ├── unused_test.cpp │ │ │ │ ├── utils.cpp │ │ │ │ ├── utils.hpp │ │ │ │ └── utils_test.cpp │ │ │ ├── atf-c.h │ │ │ ├── atf-c │ │ │ │ ├── Atffile │ │ │ │ ├── Kyuafile │ │ │ │ ├── Makefile.am.inc │ │ │ │ ├── atf-c-api.3 │ │ │ │ ├── atf-c.m4 │ │ │ │ ├── atf-c.pc.in │ │ │ │ ├── atf-common.m4 │ │ │ │ ├── atf_c_test.c │ │ │ │ ├── build.c │ │ │ │ ├── build.h │ │ │ │ ├── build_test.c │ │ │ │ ├── check.c │ │ │ │ ├── check.h │ │ │ │ ├── check_test.c │ │ │ │ ├── config.c │ │ │ │ ├── config.h │ │ │ │ ├── config_test.c │ │ │ │ ├── defs.h.in │ │ │ │ ├── detail │ │ │ │ │ ├── Atffile │ │ │ │ │ ├── Kyuafile │ │ │ │ │ ├── Makefile.am.inc │ │ │ │ │ ├── dynstr.c │ │ │ │ │ ├── dynstr.h │ │ │ │ │ ├── dynstr_test.c │ │ │ │ │ ├── env.c │ │ │ │ │ ├── env.h │ │ │ │ │ ├── env_test.c │ │ │ │ │ ├── fs.c │ │ │ │ │ ├── fs.h │ │ │ │ │ ├── fs_test.c │ │ │ │ │ ├── list.c │ │ │ │ │ ├── list.h │ │ │ │ │ ├── list_test.c │ │ │ │ │ ├── map.c │ │ │ │ │ ├── map.h │ │ │ │ │ ├── map_test.c │ │ │ │ │ ├── process.c │ │ │ │ │ ├── process.h │ │ │ │ │ ├── process_helpers.c │ │ │ │ │ ├── process_test.c │ │ │ │ │ ├── sanity.c │ │ │ │ │ ├── sanity.h │ │ │ │ │ ├── sanity_test.c │ │ │ │ │ ├── test_helpers.c │ │ │ │ │ ├── test_helpers.h │ │ │ │ │ ├── text.c │ │ │ │ │ ├── text.h │ │ │ │ │ ├── text_test.c │ │ │ │ │ ├── tp_main.c │ │ │ │ │ ├── user.c │ │ │ │ │ ├── user.h │ │ │ │ │ └── user_test.c │ │ │ │ ├── error.c │ │ │ │ ├── error.h │ │ │ │ ├── error_fwd.h │ │ │ │ ├── error_test.c │ │ │ │ ├── h_build.h │ │ │ │ ├── macros.h │ │ │ │ ├── macros_h_test.c │ │ │ │ ├── macros_test.c │ │ │ │ ├── pkg_config_test.sh │ │ │ │ ├── tc.c │ │ │ │ ├── tc.h │ │ │ │ ├── tc_test.c │ │ │ │ ├── tp.c │ │ │ │ ├── tp.h │ │ │ │ ├── tp_test.c │ │ │ │ ├── unused_test.c │ │ │ │ ├── utils.c │ │ │ │ ├── utils.h │ │ │ │ └── utils_test.c │ │ │ ├── atf-config │ │ │ │ ├── Atffile │ │ │ │ ├── Kyuafile │ │ │ │ ├── Makefile.am.inc │ │ │ │ ├── atf-config.1 │ │ │ │ ├── atf-config.cpp │ │ │ │ └── integration_test.sh │ │ │ ├── atf-report │ │ │ │ ├── Atffile │ │ │ │ ├── Kyuafile │ │ │ │ ├── Makefile.am.inc │ │ │ │ ├── atf-report.1 │ │ │ │ ├── atf-report.cpp │ │ │ │ ├── fail_helper.cpp │ │ │ │ ├── integration_test.sh │ │ │ │ ├── misc_helpers.cpp │ │ │ │ ├── pass_helper.cpp │ │ │ │ ├── reader.cpp │ │ │ │ ├── reader.hpp │ │ │ │ ├── reader_test.cpp │ │ │ │ ├── tests-results.css │ │ │ │ ├── tests-results.dtd │ │ │ │ └── tests-results.xsl │ │ │ ├── atf-run │ │ │ │ ├── Atffile │ │ │ │ ├── Kyuafile │ │ │ │ ├── Makefile.am.inc │ │ │ │ ├── atf-run.1 │ │ │ │ ├── atf-run.cpp │ │ │ │ ├── atffile.cpp │ │ │ │ ├── atffile.hpp │ │ │ │ ├── atffile_test.cpp │ │ │ │ ├── bad_metadata_helper.c │ │ │ │ ├── config.cpp │ │ │ │ ├── config.hpp │ │ │ │ ├── config_test.cpp │ │ │ │ ├── expect_helpers.c │ │ │ │ ├── fs.cpp │ │ │ │ ├── fs.hpp │ │ │ │ ├── fs_test.cpp │ │ │ │ ├── integration_test.sh │ │ │ │ ├── io.cpp │ │ │ │ ├── io.hpp │ │ │ │ ├── io_test.cpp │ │ │ │ ├── misc_helpers.cpp │ │ │ │ ├── pass_helper.cpp │ │ │ │ ├── requirements.cpp │ │ │ │ ├── requirements.hpp │ │ │ │ ├── requirements_test.cpp │ │ │ │ ├── sample │ │ │ │ │ ├── atf-run.hooks │ │ │ │ │ └── common.conf │ │ │ │ ├── several_tcs_helper.c │ │ │ │ ├── share │ │ │ │ │ └── atf-run.hooks │ │ │ │ ├── signals.cpp │ │ │ │ ├── signals.hpp │ │ │ │ ├── signals_test.cpp │ │ │ │ ├── test-program.cpp │ │ │ │ ├── test-program.hpp │ │ │ │ ├── test_program_test.cpp │ │ │ │ ├── timer.cpp │ │ │ │ ├── timer.hpp │ │ │ │ ├── user.cpp │ │ │ │ ├── user.hpp │ │ │ │ ├── user_test.cpp │ │ │ │ └── zero_tcs_helper.c │ │ │ ├── atf-sh │ │ │ │ ├── Atffile │ │ │ │ ├── Kyuafile │ │ │ │ ├── Makefile.am.inc │ │ │ │ ├── atf-check.1 │ │ │ │ ├── atf-check.cpp │ │ │ │ ├── atf-check_test.sh │ │ │ │ ├── atf-sh-api.3 │ │ │ │ ├── atf-sh.1 │ │ │ │ ├── atf-sh.cpp │ │ │ │ ├── atf-sh.m4 │ │ │ │ ├── atf-sh.pc.in │ │ │ │ ├── atf_check_test.sh │ │ │ │ ├── config_test.sh │ │ │ │ ├── integration_test.sh │ │ │ │ ├── libatf-sh.subr │ │ │ │ ├── misc_helpers.sh │ │ │ │ ├── normalize_test.sh │ │ │ │ ├── tc_test.sh │ │ │ │ └── tp_test.sh │ │ │ ├── atf-version │ │ │ │ ├── Makefile.am.inc │ │ │ │ ├── atf-version.1 │ │ │ │ ├── atf-version.cpp │ │ │ │ └── generate-revision.sh │ │ │ ├── bconfig.h.in │ │ │ ├── bootstrap │ │ │ │ ├── Makefile.am.inc │ │ │ │ ├── h_app_empty.cpp │ │ │ │ ├── h_app_opts_args.cpp │ │ │ │ ├── h_tp_atf_check_sh.sh │ │ │ │ ├── h_tp_basic_c.c │ │ │ │ ├── h_tp_basic_cpp.cpp │ │ │ │ ├── h_tp_basic_sh.sh │ │ │ │ ├── h_tp_fail.sh │ │ │ │ ├── h_tp_pass.sh │ │ │ │ ├── package.m4 │ │ │ │ ├── t_application_help.at │ │ │ │ ├── t_application_opts_args.at │ │ │ │ ├── t_atf_config.at │ │ │ │ ├── t_atf_run.at │ │ │ │ ├── t_subr_atf_check.at │ │ │ │ ├── t_test_program_compare.at │ │ │ │ ├── t_test_program_filter.at │ │ │ │ ├── t_test_program_list.at │ │ │ │ ├── t_test_program_run.at │ │ │ │ ├── testsuite │ │ │ │ └── testsuite.at │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── doc │ │ │ │ ├── Makefile.am.inc │ │ │ │ ├── atf-formats.5 │ │ │ │ ├── atf-test-case.4 │ │ │ │ ├── atf-test-program.1 │ │ │ │ └── atf.7.in │ │ │ ├── m4 │ │ │ │ ├── compiler-flags.m4 │ │ │ │ ├── cxx-std-funcs.m4 │ │ │ │ ├── developer-mode.m4 │ │ │ │ ├── libtool.m4 │ │ │ │ ├── ltoptions.m4 │ │ │ │ ├── ltsugar.m4 │ │ │ │ ├── ltversion.m4 │ │ │ │ ├── lt~obsolete.m4 │ │ │ │ ├── module-application.m4 │ │ │ │ ├── module-defs.m4 │ │ │ │ ├── module-env.m4 │ │ │ │ ├── module-fs.m4 │ │ │ │ ├── module-sanity.m4 │ │ │ │ ├── module-signals.m4 │ │ │ │ └── runtime-tool.m4 │ │ │ └── test-programs │ │ │ │ ├── Atffile │ │ │ │ ├── Kyuafile │ │ │ │ ├── Makefile.am.inc │ │ │ │ ├── c_helpers.c │ │ │ │ ├── common.sh │ │ │ │ ├── config_test.sh │ │ │ │ ├── cpp_helpers.cpp │ │ │ │ ├── expect_test.sh │ │ │ │ ├── meta_data_test.sh │ │ │ │ ├── result_test.sh │ │ │ │ ├── sh_helpers.sh │ │ │ │ └── srcdir_test.sh │ │ ├── unittest.sh │ │ └── unittest.sh.in │ ├── util │ │ └── mksymtbl.pl │ ├── version │ └── win32utils │ │ ├── Configure │ │ ├── GeoIP.diff │ │ ├── bind9.sln.in │ │ ├── build.txt │ │ ├── index.html │ │ ├── legacy │ │ ├── BINDBuild.dsw.in │ │ ├── BuildAll.bat.in │ │ ├── BuildPost.bat.in │ │ ├── BuildSetup.bat.in │ │ ├── makedefs.pl │ │ └── win32-build.txt │ │ └── readme1st.txt ├── curses.h ├── gmt2local.c ├── gmt2local.h ├── libtelnet │ ├── LICENSE │ ├── auth-proto.h │ ├── auth.c │ ├── auth.h │ ├── enc-proto.h │ ├── enc_des.c │ ├── encrypt.c │ ├── encrypt.h │ ├── forward.c │ ├── genget.c │ ├── getent.c │ ├── kerberos.c │ ├── kerberos5.c │ ├── key-proto.h │ ├── krb4encpwd.c │ ├── libtelnet.plist │ ├── libtelnet.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── misc-proto.h │ ├── misc.c │ ├── misc.h │ ├── pk.c │ ├── pk.h │ ├── read_password.c │ ├── rsaencpwd.c │ └── sra.c ├── mptcp_client │ ├── conn_lib.c │ └── conn_lib.h ├── netcat │ ├── atomicio.c │ ├── atomicio.h │ ├── netcat.c │ ├── netcat.txt │ ├── socks.c │ └── sourceroute.c ├── ping.c ├── ping6 │ ├── md5.c │ ├── md5.h │ ├── ping6.8 │ └── ping6.c ├── telnet │ ├── README │ ├── authenc.c │ ├── commands.c │ ├── defines.h │ ├── externs.h │ ├── fdset.h │ ├── general.h │ ├── krb4-proto.h │ ├── main.c │ ├── misc-proto.h │ ├── misc.h │ ├── network.c │ ├── old_makefile │ ├── ring.c │ ├── ring.h │ ├── sys_bsd.c │ ├── telnet.1 │ ├── telnet.c │ ├── terminal.c │ ├── tn3270.c │ ├── types.h │ └── utilities.c ├── term.h └── unctrl.h ├── sys_event.h ├── sys_event2.h ├── sys_socket.h ├── sys_socket_old.h ├── udptunnel ├── host2ip.c ├── host2ip.h └── udptunnel.m ├── whois.c ├── wol.cpp └── xcfs ├── Package.resolved ├── Package.swift └── Sources └── build └── main.swift /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/README.md -------------------------------------------------------------------------------- /arpa_telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/arpa_telnet.h -------------------------------------------------------------------------------- /compile_network_ios.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | swift run --package-path xcfs build -------------------------------------------------------------------------------- /ifconfig/af_inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/ifconfig/af_inet.c -------------------------------------------------------------------------------- /ifconfig/af_inet6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/ifconfig/af_inet6.c -------------------------------------------------------------------------------- /ifconfig/af_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/ifconfig/af_link.c -------------------------------------------------------------------------------- /ifconfig/ifclone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/ifconfig/ifclone.c -------------------------------------------------------------------------------- /ifconfig/ifconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/ifconfig/ifconfig.c -------------------------------------------------------------------------------- /ifconfig/ifconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/ifconfig/ifconfig.h -------------------------------------------------------------------------------- /ifconfig/netinet6/ah.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/ifconfig/netinet6/ah.h -------------------------------------------------------------------------------- /ifconfig/netinet6/esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/ifconfig/netinet6/esp.h -------------------------------------------------------------------------------- /ifconfig/netinet6/in6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/ifconfig/netinet6/in6.h -------------------------------------------------------------------------------- /ifconfig/netinet6/in6_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/ifconfig/netinet6/in6_var.h -------------------------------------------------------------------------------- /ifconfig/netinet6/ipcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/ifconfig/netinet6/ipcomp.h -------------------------------------------------------------------------------- /ifconfig/netinet6/ipsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/ifconfig/netinet6/ipsec.h -------------------------------------------------------------------------------- /ifconfig/netinet6/nd6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/ifconfig/netinet6/nd6.h -------------------------------------------------------------------------------- /ifconfig/netinet6/raw_ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/ifconfig/netinet6/raw_ip6.h -------------------------------------------------------------------------------- /ifconfig/netinet6/scope6_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/ifconfig/netinet6/scope6_var.h -------------------------------------------------------------------------------- /ip_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/ip_var.h -------------------------------------------------------------------------------- /ncurses_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/ncurses_dll.h -------------------------------------------------------------------------------- /netinet_in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/netinet_in.h -------------------------------------------------------------------------------- /netinet_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/netinet_tcp.h -------------------------------------------------------------------------------- /network_ios.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/network_ios.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /network_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/network_ios/Info.plist -------------------------------------------------------------------------------- /network_ios/network_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/network_ios/network_ios.h -------------------------------------------------------------------------------- /sources/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/Makefile.in -------------------------------------------------------------------------------- /sources/arpa_telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/arpa_telnet.h -------------------------------------------------------------------------------- /sources/bind9/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/CHANGES -------------------------------------------------------------------------------- /sources/bind9/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/COPYRIGHT -------------------------------------------------------------------------------- /sources/bind9/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/FAQ -------------------------------------------------------------------------------- /sources/bind9/FAQ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/FAQ.xml -------------------------------------------------------------------------------- /sources/bind9/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/HISTORY -------------------------------------------------------------------------------- /sources/bind9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/Makefile -------------------------------------------------------------------------------- /sources/bind9/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/README -------------------------------------------------------------------------------- /sources/bind9/acconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/acconfig.h -------------------------------------------------------------------------------- /sources/bind9/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/aclocal.m4 -------------------------------------------------------------------------------- /sources/bind9/bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/Makefile -------------------------------------------------------------------------------- /sources/bind9/bin/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/bin/check/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/check/Makefile -------------------------------------------------------------------------------- /sources/bind9/bin/check/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/check/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/bin/check/check-tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/check/check-tool.c -------------------------------------------------------------------------------- /sources/bind9/bin/check/check-tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/check/check-tool.h -------------------------------------------------------------------------------- /sources/bind9/bin/confgen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/confgen/Makefile -------------------------------------------------------------------------------- /sources/bind9/bin/confgen/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/confgen/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/bin/confgen/ddns-confgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/confgen/ddns-confgen -------------------------------------------------------------------------------- /sources/bind9/bin/confgen/keygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/confgen/keygen.c -------------------------------------------------------------------------------- /sources/bind9/bin/confgen/keygen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/confgen/keygen.h -------------------------------------------------------------------------------- /sources/bind9/bin/confgen/unix/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/confgen/unix/os.c -------------------------------------------------------------------------------- /sources/bind9/bin/confgen/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/confgen/util.c -------------------------------------------------------------------------------- /sources/bind9/bin/confgen/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/confgen/util.h -------------------------------------------------------------------------------- /sources/bind9/bin/confgen/win32/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/confgen/win32/os.c -------------------------------------------------------------------------------- /sources/bind9/bin/dig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dig/Makefile -------------------------------------------------------------------------------- /sources/bind9/bin/dig/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dig/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/bin/dig/dig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dig/dig -------------------------------------------------------------------------------- /sources/bind9/bin/dig/dig.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dig/dig.1 -------------------------------------------------------------------------------- /sources/bind9/bin/dig/dig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dig/dig.c -------------------------------------------------------------------------------- /sources/bind9/bin/dig/dig.docbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dig/dig.docbook -------------------------------------------------------------------------------- /sources/bind9/bin/dig/dig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dig/dig.html -------------------------------------------------------------------------------- /sources/bind9/bin/dig/dighost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dig/dighost.c -------------------------------------------------------------------------------- /sources/bind9/bin/dig/host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dig/host -------------------------------------------------------------------------------- /sources/bind9/bin/dig/host.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dig/host.1 -------------------------------------------------------------------------------- /sources/bind9/bin/dig/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dig/host.c -------------------------------------------------------------------------------- /sources/bind9/bin/dig/host.docbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dig/host.docbook -------------------------------------------------------------------------------- /sources/bind9/bin/dig/host.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dig/host.html -------------------------------------------------------------------------------- /sources/bind9/bin/dig/nslookup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dig/nslookup -------------------------------------------------------------------------------- /sources/bind9/bin/dig/nslookup.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dig/nslookup.1 -------------------------------------------------------------------------------- /sources/bind9/bin/dig/nslookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dig/nslookup.c -------------------------------------------------------------------------------- /sources/bind9/bin/dig/nslookup.docbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dig/nslookup.docbook -------------------------------------------------------------------------------- /sources/bind9/bin/dig/nslookup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dig/nslookup.html -------------------------------------------------------------------------------- /sources/bind9/bin/dig/win32/dig.dsp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dig/win32/dig.dsp.in -------------------------------------------------------------------------------- /sources/bind9/bin/dig/win32/dig.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dig/win32/dig.dsw -------------------------------------------------------------------------------- /sources/bind9/bin/dig/win32/dig.mak.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dig/win32/dig.mak.in -------------------------------------------------------------------------------- /sources/bind9/bin/dig/win32/host.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dig/win32/host.dsw -------------------------------------------------------------------------------- /sources/bind9/bin/dnssec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dnssec/Makefile -------------------------------------------------------------------------------- /sources/bind9/bin/dnssec/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dnssec/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/bin/dnssec/dnssectool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dnssec/dnssectool.c -------------------------------------------------------------------------------- /sources/bind9/bin/dnssec/dnssectool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/dnssec/dnssectool.h -------------------------------------------------------------------------------- /sources/bind9/bin/named/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/Makefile -------------------------------------------------------------------------------- /sources/bind9/bin/named/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/bin/named/bind.keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/bind.keys.h -------------------------------------------------------------------------------- /sources/bind9/bin/named/bind9.ver3.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/bind9.ver3.xsl -------------------------------------------------------------------------------- /sources/bind9/bin/named/bind9.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/bind9.xsl -------------------------------------------------------------------------------- /sources/bind9/bin/named/bind9.xsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/bind9.xsl.h -------------------------------------------------------------------------------- /sources/bind9/bin/named/bindkeys.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/bindkeys.pl -------------------------------------------------------------------------------- /sources/bind9/bin/named/builtin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/builtin.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/client.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/config.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/control.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/controlconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/controlconf.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/convertxsl.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/convertxsl.pl -------------------------------------------------------------------------------- /sources/bind9/bin/named/interfacemgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/interfacemgr.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/listenlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/listenlist.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/log.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/logconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/logconf.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/lwaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/lwaddr.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/lwdclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/lwdclient.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/lwderror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/lwderror.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/lwdgabn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/lwdgabn.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/lwdgnba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/lwdgnba.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/lwdgrbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/lwdgrbn.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/lwdnoop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/lwdnoop.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/lwresd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/lwresd.8 -------------------------------------------------------------------------------- /sources/bind9/bin/named/lwresd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/lwresd.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/lwresd.docbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/lwresd.docbook -------------------------------------------------------------------------------- /sources/bind9/bin/named/lwresd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/lwresd.html -------------------------------------------------------------------------------- /sources/bind9/bin/named/lwsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/lwsearch.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/main.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/named.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/named.8 -------------------------------------------------------------------------------- /sources/bind9/bin/named/named.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/named.conf.5 -------------------------------------------------------------------------------- /sources/bind9/bin/named/named.docbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/named.docbook -------------------------------------------------------------------------------- /sources/bind9/bin/named/named.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/named.html -------------------------------------------------------------------------------- /sources/bind9/bin/named/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/notify.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/query.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/server.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/sortlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/sortlist.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/statschannel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/statschannel.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/tkeyconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/tkeyconf.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/tsigconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/tsigconf.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/unix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/unix/Makefile -------------------------------------------------------------------------------- /sources/bind9/bin/named/unix/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/unix/os.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/update.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/win32/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/win32/os.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/xfrout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/xfrout.c -------------------------------------------------------------------------------- /sources/bind9/bin/named/zoneconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/named/zoneconf.c -------------------------------------------------------------------------------- /sources/bind9/bin/nsupdate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/nsupdate/Makefile -------------------------------------------------------------------------------- /sources/bind9/bin/nsupdate/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/nsupdate/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/bin/nsupdate/nsupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/nsupdate/nsupdate -------------------------------------------------------------------------------- /sources/bind9/bin/nsupdate/nsupdate.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/nsupdate/nsupdate.1 -------------------------------------------------------------------------------- /sources/bind9/bin/nsupdate/nsupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/nsupdate/nsupdate.c -------------------------------------------------------------------------------- /sources/bind9/bin/pkcs11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/pkcs11/Makefile -------------------------------------------------------------------------------- /sources/bind9/bin/pkcs11/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/pkcs11/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/bin/pkcs11/pkcs11-list.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/pkcs11/pkcs11-list.8 -------------------------------------------------------------------------------- /sources/bind9/bin/pkcs11/pkcs11-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/pkcs11/pkcs11-list.c -------------------------------------------------------------------------------- /sources/bind9/bin/pkcs11/unix/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/pkcs11/unix/unix.c -------------------------------------------------------------------------------- /sources/bind9/bin/pkcs11/win32/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/pkcs11/win32/win32.c -------------------------------------------------------------------------------- /sources/bind9/bin/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/python/Makefile -------------------------------------------------------------------------------- /sources/bind9/bin/python/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/python/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/bin/rndc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/rndc/Makefile -------------------------------------------------------------------------------- /sources/bind9/bin/rndc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/rndc/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/bin/rndc/rndc.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/rndc/rndc.8 -------------------------------------------------------------------------------- /sources/bind9/bin/rndc/rndc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/rndc/rndc.c -------------------------------------------------------------------------------- /sources/bind9/bin/rndc/rndc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/rndc/rndc.conf -------------------------------------------------------------------------------- /sources/bind9/bin/rndc/rndc.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/rndc/rndc.conf.5 -------------------------------------------------------------------------------- /sources/bind9/bin/rndc/rndc.conf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/rndc/rndc.conf.html -------------------------------------------------------------------------------- /sources/bind9/bin/rndc/rndc.docbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/rndc/rndc.docbook -------------------------------------------------------------------------------- /sources/bind9/bin/rndc/rndc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/rndc/rndc.html -------------------------------------------------------------------------------- /sources/bind9/bin/rndc/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/rndc/util.c -------------------------------------------------------------------------------- /sources/bind9/bin/rndc/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/rndc/util.h -------------------------------------------------------------------------------- /sources/bind9/bin/rndc/win32/rndc.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/rndc/win32/rndc.dsw -------------------------------------------------------------------------------- /sources/bind9/bin/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/Makefile -------------------------------------------------------------------------------- /sources/bind9/bin/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/bin/tests/adb_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/adb_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/b8t.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/b8t.mk -------------------------------------------------------------------------------- /sources/bind9/bin/tests/b9t.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/b9t.mk -------------------------------------------------------------------------------- /sources/bind9/bin/tests/byaddr_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/byaddr_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/byname_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/byname_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/cfg_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/cfg_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/db/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/db/Makefile -------------------------------------------------------------------------------- /sources/bind9/bin/tests/db/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/db/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/bin/tests/db/t_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/db/t_db.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/db_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/db_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/dst/Ktest.+001+00002.key: -------------------------------------------------------------------------------- 1 | test. IN DNSKEY 49152 2 1 2 | -------------------------------------------------------------------------------- /sources/bind9/bin/tests/dst/Ktest.+001+00002.key.in: -------------------------------------------------------------------------------- 1 | test. IN DNSKEY 49152 2 1 2 | -------------------------------------------------------------------------------- /sources/bind9/bin/tests/dst/Ktest.+003+49667.key: -------------------------------------------------------------------------------- 1 | test. IN DNSKEY 49152 2 3 2 | -------------------------------------------------------------------------------- /sources/bind9/bin/tests/dst/Ktest.+003+49667.key.in: -------------------------------------------------------------------------------- 1 | test. IN DNSKEY 49152 2 3 2 | -------------------------------------------------------------------------------- /sources/bind9/bin/tests/dst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/dst/Makefile -------------------------------------------------------------------------------- /sources/bind9/bin/tests/dst/dst_2_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/dst/dst_2_data -------------------------------------------------------------------------------- /sources/bind9/bin/tests/dst/dst_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/dst/dst_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/dst/gsstest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/dst/gsstest.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/dst/t2_data_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/dst/t2_data_1 -------------------------------------------------------------------------------- /sources/bind9/bin/tests/dst/t2_data_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/dst/t2_data_2 -------------------------------------------------------------------------------- /sources/bind9/bin/tests/dst/t2_dsasig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/dst/t2_dsasig -------------------------------------------------------------------------------- /sources/bind9/bin/tests/dst/t2_rsasig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/dst/t2_rsasig -------------------------------------------------------------------------------- /sources/bind9/bin/tests/dst/t_dst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/dst/t_dst.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/dst/win32/REQUIRE_EXTENDED_DIR: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/bind9/bin/tests/entropy_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/entropy_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/gxba_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/gxba_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/gxbn_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/gxbn_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/hash_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/hash_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/inter_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/inter_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/lex_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/lex_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/lfsr_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/lfsr_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/log_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/log_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/lwres_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/lwres_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/master_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/master_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/mem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/mem/Makefile -------------------------------------------------------------------------------- /sources/bind9/bin/tests/mem/t_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/mem/t_mem.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/mempool_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/mempool_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/name_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/name_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/named.conf -------------------------------------------------------------------------------- /sources/bind9/bin/tests/names/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/names/Makefile -------------------------------------------------------------------------------- /sources/bind9/bin/tests/ndc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/ndc.conf -------------------------------------------------------------------------------- /sources/bind9/bin/tests/net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/net/Makefile -------------------------------------------------------------------------------- /sources/bind9/bin/tests/net/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/net/driver.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/net/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/net/driver.h -------------------------------------------------------------------------------- /sources/bind9/bin/tests/nsecify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/nsecify.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/printmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/printmsg.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/printmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/printmsg.h -------------------------------------------------------------------------------- /sources/bind9/bin/tests/rbt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/rbt/Makefile -------------------------------------------------------------------------------- /sources/bind9/bin/tests/rbt/t_rbt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/rbt/t_rbt.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/rbt_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/rbt_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/rbt_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/rbt_test.out -------------------------------------------------------------------------------- /sources/bind9/bin/tests/rbt_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/rbt_test.txt -------------------------------------------------------------------------------- /sources/bind9/bin/tests/rdata_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/rdata_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/rwlock_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/rwlock_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/serial_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/serial_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/sig0_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/sig0_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/sock_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/sock_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/sym_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/sym_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/system/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/system/README -------------------------------------------------------------------------------- /sources/bind9/bin/tests/system/ans.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/system/ans.pl -------------------------------------------------------------------------------- /sources/bind9/bin/tests/system/checkds/none.example.dlv.example.dlv.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/bind9/bin/tests/system/checkds/none.example.ds.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/bind9/bin/tests/system/conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/system/conf.sh -------------------------------------------------------------------------------- /sources/bind9/bin/tests/system/ixfr/ans2/startme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/bind9/bin/tests/system/ixfr/ns1/startme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/bind9/bin/tests/system/legacy/ns2/named.dropedns: -------------------------------------------------------------------------------- 1 | dropedns 2 | -------------------------------------------------------------------------------- /sources/bind9/bin/tests/system/legacy/ns3/named.dropedns: -------------------------------------------------------------------------------- 1 | dropedns 2 | -------------------------------------------------------------------------------- /sources/bind9/bin/tests/system/legacy/ns3/named.notcp: -------------------------------------------------------------------------------- 1 | notcp 2 | -------------------------------------------------------------------------------- /sources/bind9/bin/tests/system/legacy/ns5/named.notcp: -------------------------------------------------------------------------------- 1 | notcp 2 | -------------------------------------------------------------------------------- /sources/bind9/bin/tests/system/legacy/ns6/named.args: -------------------------------------------------------------------------------- 1 | -m record,size,mctx -T clienttest -c named.conf -d 99 -g -U 4 -T maxudp512 2 | -------------------------------------------------------------------------------- /sources/bind9/bin/tests/system/legacy/ns7/named.args: -------------------------------------------------------------------------------- 1 | -m record,size,mctx -T clienttest -c named.conf -d 99 -g -U 4 -T maxudp512 2 | -------------------------------------------------------------------------------- /sources/bind9/bin/tests/system/legacy/ns7/named.notcp: -------------------------------------------------------------------------------- 1 | notcp 2 | -------------------------------------------------------------------------------- /sources/bind9/bin/tests/system/notify/ns4/named.port: -------------------------------------------------------------------------------- 1 | 5301 2 | -------------------------------------------------------------------------------- /sources/bind9/bin/tests/system/pkcs11/usepkcs11: -------------------------------------------------------------------------------- 1 | This test relies on PKCS#11! 2 | -------------------------------------------------------------------------------- /sources/bind9/bin/tests/system/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/system/run.sh -------------------------------------------------------------------------------- /sources/bind9/bin/tests/system/send.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/system/send.pl -------------------------------------------------------------------------------- /sources/bind9/bin/tests/system/stop.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/system/stop.pl -------------------------------------------------------------------------------- /sources/bind9/bin/tests/system/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/system/stop.sh -------------------------------------------------------------------------------- /sources/bind9/bin/tests/t_api.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/t_api.pl -------------------------------------------------------------------------------- /sources/bind9/bin/tests/task_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/task_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/tasks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/tasks/Makefile -------------------------------------------------------------------------------- /sources/bind9/bin/tests/timer_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/timer_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/wire_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/wire_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tests/wire_test.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/wire_test.data -------------------------------------------------------------------------------- /sources/bind9/bin/tests/zone_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tests/zone_test.c -------------------------------------------------------------------------------- /sources/bind9/bin/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tools/Makefile -------------------------------------------------------------------------------- /sources/bind9/bin/tools/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tools/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/bin/tools/arpaname.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tools/arpaname.1 -------------------------------------------------------------------------------- /sources/bind9/bin/tools/arpaname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tools/arpaname.c -------------------------------------------------------------------------------- /sources/bind9/bin/tools/arpaname.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tools/arpaname.html -------------------------------------------------------------------------------- /sources/bind9/bin/tools/genrandom.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tools/genrandom.8 -------------------------------------------------------------------------------- /sources/bind9/bin/tools/genrandom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tools/genrandom.c -------------------------------------------------------------------------------- /sources/bind9/bin/tools/genrandom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tools/genrandom.html -------------------------------------------------------------------------------- /sources/bind9/bin/tools/nsec3hash.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tools/nsec3hash.8 -------------------------------------------------------------------------------- /sources/bind9/bin/tools/nsec3hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tools/nsec3hash.c -------------------------------------------------------------------------------- /sources/bind9/bin/tools/nsec3hash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bin/tools/nsec3hash.html -------------------------------------------------------------------------------- /sources/bind9/bind.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/bind.keys -------------------------------------------------------------------------------- /sources/bind9/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/config.guess -------------------------------------------------------------------------------- /sources/bind9/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/config.h -------------------------------------------------------------------------------- /sources/bind9/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/config.h.in -------------------------------------------------------------------------------- /sources/bind9/config.h.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/config.h.win32 -------------------------------------------------------------------------------- /sources/bind9/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/config.log -------------------------------------------------------------------------------- /sources/bind9/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/config.status -------------------------------------------------------------------------------- /sources/bind9/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/config.sub -------------------------------------------------------------------------------- /sources/bind9/config.threads.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/config.threads.in -------------------------------------------------------------------------------- /sources/bind9/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/configure -------------------------------------------------------------------------------- /sources/bind9/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/configure.in -------------------------------------------------------------------------------- /sources/bind9/contrib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/README -------------------------------------------------------------------------------- /sources/bind9/contrib/check5011.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/check5011.pl -------------------------------------------------------------------------------- /sources/bind9/contrib/dane/mkdane.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/dane/mkdane.sh -------------------------------------------------------------------------------- /sources/bind9/contrib/dlz/drivers/dlz_dlopen_driver.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/bind9/contrib/dlz/drivers/include/dlz/dlz_dlopen_driver.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/bind9/contrib/nanny/nanny.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/nanny/nanny.pl -------------------------------------------------------------------------------- /sources/bind9/contrib/nslint-2.1a3/VERSION: -------------------------------------------------------------------------------- 1 | 2.1a3 2 | -------------------------------------------------------------------------------- /sources/bind9/contrib/pkcs11-keygen/README: -------------------------------------------------------------------------------- 1 | Moved to ${top}/bin/pkcs11 2 | -------------------------------------------------------------------------------- /sources/bind9/contrib/queryperf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/queryperf/README -------------------------------------------------------------------------------- /sources/bind9/contrib/sdb/bdb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/sdb/bdb/README -------------------------------------------------------------------------------- /sources/bind9/contrib/sdb/bdb/bdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/sdb/bdb/bdb.c -------------------------------------------------------------------------------- /sources/bind9/contrib/sdb/bdb/bdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/sdb/bdb/bdb.h -------------------------------------------------------------------------------- /sources/bind9/contrib/sdb/dir/dirdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/sdb/dir/dirdb.c -------------------------------------------------------------------------------- /sources/bind9/contrib/sdb/dir/dirdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/sdb/dir/dirdb.h -------------------------------------------------------------------------------- /sources/bind9/contrib/sdb/tcl/tcldb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/sdb/tcl/tcldb.c -------------------------------------------------------------------------------- /sources/bind9/contrib/sdb/tcl/tcldb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/sdb/tcl/tcldb.h -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/CHANGELOG -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/LICENSE -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/README -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/TODO -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/config.h.in -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/config_zkt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/config_zkt.h -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/configure -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/configure.ac -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/debug.h -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/dki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/dki.c -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/dki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/dki.h -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/dnssec-zkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/dnssec-zkt.c -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/domaincmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/domaincmp.c -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/domaincmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/domaincmp.h -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/examples/flat/example.net/dnssec.conf: -------------------------------------------------------------------------------- 1 | Key_Algo: RSASHA256 # (Algorithm ID 8) 2 | NSEC3: OPTOUT 3 | -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/log.c -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/log.h -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/man/zkt-ls.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/man/zkt-ls.8 -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/misc.c -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/misc.h -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/ncparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/ncparse.c -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/ncparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/ncparse.h -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/nscomm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/nscomm.c -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/nscomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/nscomm.h -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/rollover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/rollover.c -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/rollover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/rollover.h -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/soaserial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/soaserial.c -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/soaserial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/soaserial.h -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/strlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/strlist.c -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/strlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/strlist.h -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/tags -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/tcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/tcap.c -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/tcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/tcap.h -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/zconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/zconf.c -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/zconf.h -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/zfparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/zfparse.c -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/zfparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/zfparse.h -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/zkt-conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/zkt-conf.c -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/zkt-keyman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/zkt-keyman.c -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/zkt-ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/zkt-ls.c -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/zkt-signer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/zkt-signer.c -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/zkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/zkt.c -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/zkt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/zkt.h -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/zone.c -------------------------------------------------------------------------------- /sources/bind9/contrib/zkt/zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zkt/zone.h -------------------------------------------------------------------------------- /sources/bind9/contrib/zone-edit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zone-edit.sh -------------------------------------------------------------------------------- /sources/bind9/contrib/zone-edit.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/contrib/zone-edit.sh.in -------------------------------------------------------------------------------- /sources/bind9/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/Makefile -------------------------------------------------------------------------------- /sources/bind9/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/doc/arm/Bv9ARM-book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/Bv9ARM-book.xml -------------------------------------------------------------------------------- /sources/bind9/doc/arm/Bv9ARM.ch01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/Bv9ARM.ch01.html -------------------------------------------------------------------------------- /sources/bind9/doc/arm/Bv9ARM.ch02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/Bv9ARM.ch02.html -------------------------------------------------------------------------------- /sources/bind9/doc/arm/Bv9ARM.ch03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/Bv9ARM.ch03.html -------------------------------------------------------------------------------- /sources/bind9/doc/arm/Bv9ARM.ch04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/Bv9ARM.ch04.html -------------------------------------------------------------------------------- /sources/bind9/doc/arm/Bv9ARM.ch05.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/Bv9ARM.ch05.html -------------------------------------------------------------------------------- /sources/bind9/doc/arm/Bv9ARM.ch06.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/Bv9ARM.ch06.html -------------------------------------------------------------------------------- /sources/bind9/doc/arm/Bv9ARM.ch07.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/Bv9ARM.ch07.html -------------------------------------------------------------------------------- /sources/bind9/doc/arm/Bv9ARM.ch08.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/Bv9ARM.ch08.html -------------------------------------------------------------------------------- /sources/bind9/doc/arm/Bv9ARM.ch09.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/Bv9ARM.ch09.html -------------------------------------------------------------------------------- /sources/bind9/doc/arm/Bv9ARM.ch10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/Bv9ARM.ch10.html -------------------------------------------------------------------------------- /sources/bind9/doc/arm/Bv9ARM.ch11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/Bv9ARM.ch11.html -------------------------------------------------------------------------------- /sources/bind9/doc/arm/Bv9ARM.ch12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/Bv9ARM.ch12.html -------------------------------------------------------------------------------- /sources/bind9/doc/arm/Bv9ARM.ch13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/Bv9ARM.ch13.html -------------------------------------------------------------------------------- /sources/bind9/doc/arm/Bv9ARM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/Bv9ARM.html -------------------------------------------------------------------------------- /sources/bind9/doc/arm/Bv9ARM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/Bv9ARM.pdf -------------------------------------------------------------------------------- /sources/bind9/doc/arm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/Makefile -------------------------------------------------------------------------------- /sources/bind9/doc/arm/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/doc/arm/README-SGML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/README-SGML -------------------------------------------------------------------------------- /sources/bind9/doc/arm/dnssec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/dnssec.xml -------------------------------------------------------------------------------- /sources/bind9/doc/arm/isc-logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/isc-logo.eps -------------------------------------------------------------------------------- /sources/bind9/doc/arm/isc-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/isc-logo.pdf -------------------------------------------------------------------------------- /sources/bind9/doc/arm/latex-fixup.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/latex-fixup.pl -------------------------------------------------------------------------------- /sources/bind9/doc/arm/libdns.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/libdns.xml -------------------------------------------------------------------------------- /sources/bind9/doc/arm/man.dig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/man.dig.html -------------------------------------------------------------------------------- /sources/bind9/doc/arm/man.host.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/man.host.html -------------------------------------------------------------------------------- /sources/bind9/doc/arm/man.named.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/man.named.html -------------------------------------------------------------------------------- /sources/bind9/doc/arm/man.rndc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/man.rndc.html -------------------------------------------------------------------------------- /sources/bind9/doc/arm/managed-keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/managed-keys.xml -------------------------------------------------------------------------------- /sources/bind9/doc/arm/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/notes.html -------------------------------------------------------------------------------- /sources/bind9/doc/arm/notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/notes.pdf -------------------------------------------------------------------------------- /sources/bind9/doc/arm/notes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/notes.xml -------------------------------------------------------------------------------- /sources/bind9/doc/arm/pkcs11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/arm/pkcs11.xml -------------------------------------------------------------------------------- /sources/bind9/doc/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/doxygen/Doxyfile -------------------------------------------------------------------------------- /sources/bind9/doc/doxygen/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/doxygen/Doxyfile.in -------------------------------------------------------------------------------- /sources/bind9/doc/doxygen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/doxygen/Makefile -------------------------------------------------------------------------------- /sources/bind9/doc/doxygen/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/doxygen/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/doc/doxygen/mainpage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/doxygen/mainpage -------------------------------------------------------------------------------- /sources/bind9/doc/misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/misc/Makefile -------------------------------------------------------------------------------- /sources/bind9/doc/misc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/misc/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/doc/misc/dnssec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/misc/dnssec -------------------------------------------------------------------------------- /sources/bind9/doc/misc/ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/misc/ipv6 -------------------------------------------------------------------------------- /sources/bind9/doc/misc/migration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/misc/migration -------------------------------------------------------------------------------- /sources/bind9/doc/misc/migration-4to9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/misc/migration-4to9 -------------------------------------------------------------------------------- /sources/bind9/doc/misc/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/misc/options -------------------------------------------------------------------------------- /sources/bind9/doc/misc/rfc-compliance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/misc/rfc-compliance -------------------------------------------------------------------------------- /sources/bind9/doc/misc/roadmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/misc/roadmap -------------------------------------------------------------------------------- /sources/bind9/doc/misc/sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/misc/sdb -------------------------------------------------------------------------------- /sources/bind9/doc/misc/sort-options.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/misc/sort-options.pl -------------------------------------------------------------------------------- /sources/bind9/doc/xsl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/xsl/Makefile -------------------------------------------------------------------------------- /sources/bind9/doc/xsl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/xsl/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/doc/xsl/copyright.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/xsl/copyright.xsl -------------------------------------------------------------------------------- /sources/bind9/doc/xsl/isc-manpage.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/xsl/isc-manpage.xsl -------------------------------------------------------------------------------- /sources/bind9/doc/xsl/pre-latex.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/doc/xsl/pre-latex.xsl -------------------------------------------------------------------------------- /sources/bind9/docutil/HTML_COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/docutil/HTML_COPYRIGHT -------------------------------------------------------------------------------- /sources/bind9/docutil/MAN_COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/docutil/MAN_COPYRIGHT -------------------------------------------------------------------------------- /sources/bind9/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/install-sh -------------------------------------------------------------------------------- /sources/bind9/isc-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/isc-config.sh -------------------------------------------------------------------------------- /sources/bind9/isc-config.sh.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/isc-config.sh.1 -------------------------------------------------------------------------------- /sources/bind9/isc-config.sh.docbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/isc-config.sh.docbook -------------------------------------------------------------------------------- /sources/bind9/isc-config.sh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/isc-config.sh.html -------------------------------------------------------------------------------- /sources/bind9/isc-config.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/isc-config.sh.in -------------------------------------------------------------------------------- /sources/bind9/lib/Atffile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/Atffile -------------------------------------------------------------------------------- /sources/bind9/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/lib/bind9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/bind9/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/bind9/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/bind9/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/lib/bind9/api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/bind9/api -------------------------------------------------------------------------------- /sources/bind9/lib/bind9/check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/bind9/check.c -------------------------------------------------------------------------------- /sources/bind9/lib/bind9/getaddresses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/bind9/getaddresses.c -------------------------------------------------------------------------------- /sources/bind9/lib/bind9/timestamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/bind9/lib/bind9/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/bind9/version.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/Atffile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/Atffile -------------------------------------------------------------------------------- /sources/bind9/lib/dns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/dns/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/lib/dns/acache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/acache.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/acl.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/adb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/adb.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/api -------------------------------------------------------------------------------- /sources/bind9/lib/dns/byaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/byaddr.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/cache.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/callbacks.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/client.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/clientinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/clientinfo.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/code.h -------------------------------------------------------------------------------- /sources/bind9/lib/dns/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/compress.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/db.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/dbiterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/dbiterator.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/dbtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/dbtable.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/diff.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/dispatch.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/dlz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/dlz.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/dns64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/dns64.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/dnssec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/dnssec.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/ds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/ds.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/dst_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/dst_api.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/dst_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/dst_internal.h -------------------------------------------------------------------------------- /sources/bind9/lib/dns/dst_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/dst_lib.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/dst_openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/dst_openssl.h -------------------------------------------------------------------------------- /sources/bind9/lib/dns/dst_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/dst_parse.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/dst_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/dst_parse.h -------------------------------------------------------------------------------- /sources/bind9/lib/dns/dst_result.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/dst_result.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/ecdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/ecdb.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/forward.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/forward.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/gen -------------------------------------------------------------------------------- /sources/bind9/lib/dns/gen-unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/gen-unix.h -------------------------------------------------------------------------------- /sources/bind9/lib/dns/gen-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/gen-win32.h -------------------------------------------------------------------------------- /sources/bind9/lib/dns/gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/gen.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/gssapi_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/gssapi_link.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/gssapictx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/gssapictx.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/hmac_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/hmac_link.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/include/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/dns/include/dns/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/include/dns/db.h -------------------------------------------------------------------------------- /sources/bind9/lib/dns/include/dns/ds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/include/dns/ds.h -------------------------------------------------------------------------------- /sources/bind9/lib/dns/include/dns/zt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/include/dns/zt.h -------------------------------------------------------------------------------- /sources/bind9/lib/dns/iptable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/iptable.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/journal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/journal.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/key.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/keydata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/keydata.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/keytable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/keytable.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/lib.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/log.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/lookup.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/master.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/masterdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/masterdump.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/message.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/name.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/ncache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/ncache.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/nsec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/nsec.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/nsec3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/nsec3.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/openssl_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/openssl_link.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/openssldh_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/openssldh_link.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/order.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/peer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/peer.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/portlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/portlist.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/private.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/rbt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/rbt.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/rbtdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/rbtdb.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/rbtdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/rbtdb.h -------------------------------------------------------------------------------- /sources/bind9/lib/dns/rbtdb64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/rbtdb64.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/rbtdb64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/rbtdb64.h -------------------------------------------------------------------------------- /sources/bind9/lib/dns/rcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/rcode.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/rdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/rdata.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/rdata/ch_3/a_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/rdata/ch_3/a_1.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/rdata/ch_3/a_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/rdata/ch_3/a_1.h -------------------------------------------------------------------------------- /sources/bind9/lib/dns/rdata/hs_4/a_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/rdata/hs_4/a_1.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/rdata/hs_4/a_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/rdata/hs_4/a_1.h -------------------------------------------------------------------------------- /sources/bind9/lib/dns/rdata/in_1/a_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/rdata/in_1/a_1.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/rdata/in_1/a_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/rdata/in_1/a_1.h -------------------------------------------------------------------------------- /sources/bind9/lib/dns/rdatalist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/rdatalist.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/rdatalist_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/rdatalist_p.h -------------------------------------------------------------------------------- /sources/bind9/lib/dns/rdataset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/rdataset.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/rdatasetiter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/rdatasetiter.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/rdataslab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/rdataslab.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/request.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/resolver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/resolver.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/result.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/result.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/rootns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/rootns.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/rpz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/rpz.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/rriterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/rriterator.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/rrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/rrl.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/sdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/sdb.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/sdlz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/sdlz.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/soa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/soa.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/spnego.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/spnego.asn1 -------------------------------------------------------------------------------- /sources/bind9/lib/dns/spnego.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/spnego.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/spnego.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/spnego.h -------------------------------------------------------------------------------- /sources/bind9/lib/dns/spnego_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/spnego_asn1.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/spnego_asn1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/spnego_asn1.pl -------------------------------------------------------------------------------- /sources/bind9/lib/dns/ssu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/ssu.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/ssu_external.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/ssu_external.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/stats.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/tcpmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/tcpmsg.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/tests/Atffile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/tests/Atffile -------------------------------------------------------------------------------- /sources/bind9/lib/dns/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/tests/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/dns/tests/db_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/tests/db_test.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/tests/dh_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/tests/dh_test.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/tests/dnstest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/tests/dnstest.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/tests/dnstest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/tests/dnstest.h -------------------------------------------------------------------------------- /sources/bind9/lib/dns/tests/mkraw.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/tests/mkraw.pl -------------------------------------------------------------------------------- /sources/bind9/lib/dns/tests/zt_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/tests/zt_test.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/time.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/timer.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/timestamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/bind9/lib/dns/tkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/tkey.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/tsec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/tsec.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/tsig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/tsig.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/ttl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/ttl.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/update.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/validator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/validator.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/version.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/view.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/win32/DLLMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/win32/DLLMain.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/win32/gen.dsp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/win32/gen.dsp.in -------------------------------------------------------------------------------- /sources/bind9/lib/dns/win32/gen.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/win32/gen.dsw -------------------------------------------------------------------------------- /sources/bind9/lib/dns/win32/gen.mak.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/win32/gen.mak.in -------------------------------------------------------------------------------- /sources/bind9/lib/dns/win32/libdns.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/win32/libdns.dsw -------------------------------------------------------------------------------- /sources/bind9/lib/dns/win32/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/win32/version.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/xfrin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/xfrin.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/zone.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/zonekey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/zonekey.c -------------------------------------------------------------------------------- /sources/bind9/lib/dns/zt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/dns/zt.c -------------------------------------------------------------------------------- /sources/bind9/lib/export/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/export/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/export/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/export/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/lib/export/dns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/export/dns/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/export/irs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/export/irs/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/export/isc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/export/isc/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/irs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/irs/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/irs/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/irs/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/lib/irs/api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/irs/api -------------------------------------------------------------------------------- /sources/bind9/lib/irs/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/irs/context.c -------------------------------------------------------------------------------- /sources/bind9/lib/irs/dnsconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/irs/dnsconf.c -------------------------------------------------------------------------------- /sources/bind9/lib/irs/gai_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/irs/gai_strerror.c -------------------------------------------------------------------------------- /sources/bind9/lib/irs/getaddrinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/irs/getaddrinfo.c -------------------------------------------------------------------------------- /sources/bind9/lib/irs/getnameinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/irs/getnameinfo.c -------------------------------------------------------------------------------- /sources/bind9/lib/irs/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/irs/include/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/irs/resconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/irs/resconf.c -------------------------------------------------------------------------------- /sources/bind9/lib/irs/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/irs/version.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/Atffile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/Atffile -------------------------------------------------------------------------------- /sources/bind9/lib/isc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/isc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/lib/isc/api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/api -------------------------------------------------------------------------------- /sources/bind9/lib/isc/app_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/app_api.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/assertions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/assertions.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/backtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/backtrace.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/base32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/base32.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/base64.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/bitstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/bitstring.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/buffer.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/bufferlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/bufferlist.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/commandline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/commandline.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/counter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/counter.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/entropy.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/error.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/event.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/fsaccess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/fsaccess.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/hash.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/heap.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/hex.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/hmacmd5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/hmacmd5.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/hmacsha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/hmacsha.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/httpd.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/ia64/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/ia64/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/lib/isc/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/include/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/isc/include/isc/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/include/isc/os.h -------------------------------------------------------------------------------- /sources/bind9/lib/isc/include/isc/tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/include/isc/tm.h -------------------------------------------------------------------------------- /sources/bind9/lib/isc/inet_aton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/inet_aton.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/inet_ntop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/inet_ntop.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/inet_pton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/inet_pton.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/iterated_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/iterated_hash.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/lex.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/lfsr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/lfsr.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/lib.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/log.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/md5.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/mem.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/mem_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/mem_api.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/mips/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/mips/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/lib/isc/mutexblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/mutexblock.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/netaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/netaddr.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/netscope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/netscope.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/nls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/nls/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/isc/nls/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/nls/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/lib/isc/nls/msgcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/nls/msgcat.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/ondestroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/ondestroy.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/parseint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/parseint.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/pool.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/portset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/portset.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/print.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/pthreads/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/pthreads/mutex.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/quota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/quota.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/radix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/radix.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/random.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/ratelimiter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/ratelimiter.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/refcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/refcount.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/regex.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/region.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/result.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/result.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/rwlock.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/safe.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/serial.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/sha1.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/sha2.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/sockaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/sockaddr.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/socket_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/socket_api.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/stats.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/string.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/strtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/strtoul.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/symtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/symtab.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/task.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/task_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/task_api.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/task_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/task_p.h -------------------------------------------------------------------------------- /sources/bind9/lib/isc/taskpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/taskpool.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/tests/Atffile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/tests/Atffile -------------------------------------------------------------------------------- /sources/bind9/lib/isc/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/tests/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/isc/tests/isctest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/tests/isctest.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/tests/isctest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/tests/isctest.h -------------------------------------------------------------------------------- /sources/bind9/lib/isc/tests/lex_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/tests/lex_test.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/timer.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/timer_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/timer_api.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/timer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/timer_p.h -------------------------------------------------------------------------------- /sources/bind9/lib/isc/timestamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/bind9/lib/isc/tm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/tm.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/unix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/unix/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/isc/unix/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/unix/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/lib/isc/unix/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/unix/app.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/unix/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/unix/dir.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/unix/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/unix/entropy.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/unix/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/unix/file.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/unix/fsaccess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/unix/fsaccess.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/unix/ipv6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/unix/ipv6.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/unix/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/unix/keyboard.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/unix/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/unix/net.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/unix/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/unix/os.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/unix/resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/unix/resource.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/unix/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/unix/socket.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/unix/socket_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/unix/socket_p.h -------------------------------------------------------------------------------- /sources/bind9/lib/isc/unix/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/unix/stdio.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/unix/stdtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/unix/stdtime.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/unix/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/unix/strerror.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/unix/syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/unix/syslog.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/unix/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/unix/time.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/version.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/DLLMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/DLLMain.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/app.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/dir.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/entropy.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/file.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/fsaccess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/fsaccess.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/ipv6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/ipv6.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/keyboard.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/libgen.h -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/libisc.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/libisc.dsw -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/net.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/netdb.h -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/ntgroups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/ntgroups.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/ntpaths.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/ntpaths.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/once.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/once.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/os.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/resource.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/socket.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/stdio.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/stdtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/stdtime.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/strerror.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/syslog.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/syslog.h -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/thread.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/time.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/unistd.h -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/version.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/win32/win32os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/win32/win32os.c -------------------------------------------------------------------------------- /sources/bind9/lib/isc/x86_32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isc/x86_32/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/isccc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isccc/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/isccc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isccc/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/lib/isccc/alist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isccc/alist.c -------------------------------------------------------------------------------- /sources/bind9/lib/isccc/api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isccc/api -------------------------------------------------------------------------------- /sources/bind9/lib/isccc/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isccc/base64.c -------------------------------------------------------------------------------- /sources/bind9/lib/isccc/cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isccc/cc.c -------------------------------------------------------------------------------- /sources/bind9/lib/isccc/ccmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isccc/ccmsg.c -------------------------------------------------------------------------------- /sources/bind9/lib/isccc/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isccc/lib.c -------------------------------------------------------------------------------- /sources/bind9/lib/isccc/result.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isccc/result.c -------------------------------------------------------------------------------- /sources/bind9/lib/isccc/sexpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isccc/sexpr.c -------------------------------------------------------------------------------- /sources/bind9/lib/isccc/symtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isccc/symtab.c -------------------------------------------------------------------------------- /sources/bind9/lib/isccc/timestamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/bind9/lib/isccc/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isccc/version.c -------------------------------------------------------------------------------- /sources/bind9/lib/isccfg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isccfg/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/isccfg/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isccfg/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/lib/isccfg/aclconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isccfg/aclconf.c -------------------------------------------------------------------------------- /sources/bind9/lib/isccfg/api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isccfg/api -------------------------------------------------------------------------------- /sources/bind9/lib/isccfg/dnsconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isccfg/dnsconf.c -------------------------------------------------------------------------------- /sources/bind9/lib/isccfg/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isccfg/log.c -------------------------------------------------------------------------------- /sources/bind9/lib/isccfg/namedconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isccfg/namedconf.c -------------------------------------------------------------------------------- /sources/bind9/lib/isccfg/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isccfg/parser.c -------------------------------------------------------------------------------- /sources/bind9/lib/isccfg/timestamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/bind9/lib/isccfg/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/isccfg/version.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/Atffile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/Atffile -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/api -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/assert_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/assert_p.h -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/compat.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/context.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/context_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/context_p.h -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/gai_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/gai_strerror.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/getaddrinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/getaddrinfo.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/gethost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/gethost.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/getipnode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/getipnode.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/getnameinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/getnameinfo.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/getrrset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/getrrset.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/herror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/herror.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/lwbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/lwbuffer.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/lwconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/lwconfig.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/lwinetaton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/lwinetaton.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/lwinetntop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/lwinetntop.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/lwinetpton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/lwinetpton.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/lwpacket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/lwpacket.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/lwres_gabn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/lwres_gabn.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/lwres_gnba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/lwres_gnba.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/lwres_grbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/lwres_grbn.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/lwres_noop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/lwres_noop.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/lwresutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/lwresutil.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/man/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/man/lwres.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/man/lwres.3 -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/man/lwres.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/man/lwres.html -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/print.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/print_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/print_p.h -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/tests/Atffile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/tests/Atffile -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/tests/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/tests/testdata/link-local.conf: -------------------------------------------------------------------------------- 1 | nameserver fe80::1%1 2 | -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/timestamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/unix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/unix/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/version.c -------------------------------------------------------------------------------- /sources/bind9/lib/lwres/win32/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/lwres/win32/socket.c -------------------------------------------------------------------------------- /sources/bind9/lib/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/tests/Makefile -------------------------------------------------------------------------------- /sources/bind9/lib/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/tests/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/lib/tests/T_testlist.imp: -------------------------------------------------------------------------------- 1 | #! . 2 | 3 | T_testlist 4 | -------------------------------------------------------------------------------- /sources/bind9/lib/tests/t_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/lib/tests/t_api.c -------------------------------------------------------------------------------- /sources/bind9/lib/tests/timestamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/bind9/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/libtool -------------------------------------------------------------------------------- /sources/bind9/libtool.m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/libtool.m4/libtool.m4 -------------------------------------------------------------------------------- /sources/bind9/libtool.m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/libtool.m4/ltsugar.m4 -------------------------------------------------------------------------------- /sources/bind9/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/ltmain.sh -------------------------------------------------------------------------------- /sources/bind9/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/make/Makefile -------------------------------------------------------------------------------- /sources/bind9/make/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/make/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/make/includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/make/includes -------------------------------------------------------------------------------- /sources/bind9/make/includes.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/make/includes.in -------------------------------------------------------------------------------- /sources/bind9/make/mkdep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/make/mkdep -------------------------------------------------------------------------------- /sources/bind9/make/mkdep.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/make/mkdep.in -------------------------------------------------------------------------------- /sources/bind9/make/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/make/rules -------------------------------------------------------------------------------- /sources/bind9/make/rules.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/make/rules.in -------------------------------------------------------------------------------- /sources/bind9/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/mkinstalldirs -------------------------------------------------------------------------------- /sources/bind9/srcid: -------------------------------------------------------------------------------- 1 | SRCID=464a99d 2 | -------------------------------------------------------------------------------- /sources/bind9/unit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/unit/Makefile -------------------------------------------------------------------------------- /sources/bind9/unit/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/unit/Makefile.in -------------------------------------------------------------------------------- /sources/bind9/unit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/unit/README -------------------------------------------------------------------------------- /sources/bind9/unit/atf-src/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/unit/atf-src/AUTHORS -------------------------------------------------------------------------------- /sources/bind9/unit/atf-src/Atffile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/unit/atf-src/Atffile -------------------------------------------------------------------------------- /sources/bind9/unit/atf-src/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/unit/atf-src/COPYING -------------------------------------------------------------------------------- /sources/bind9/unit/atf-src/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/unit/atf-src/INSTALL -------------------------------------------------------------------------------- /sources/bind9/unit/atf-src/Kyuafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/unit/atf-src/Kyuafile -------------------------------------------------------------------------------- /sources/bind9/unit/atf-src/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/unit/atf-src/NEWS -------------------------------------------------------------------------------- /sources/bind9/unit/atf-src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/unit/atf-src/README -------------------------------------------------------------------------------- /sources/bind9/unit/atf-src/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/unit/atf-src/TODO -------------------------------------------------------------------------------- /sources/bind9/unit/atf-src/atf-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/unit/atf-src/atf-c.h -------------------------------------------------------------------------------- /sources/bind9/unit/atf-src/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/unit/atf-src/configure -------------------------------------------------------------------------------- /sources/bind9/unit/unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/unit/unittest.sh -------------------------------------------------------------------------------- /sources/bind9/unit/unittest.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/unit/unittest.sh.in -------------------------------------------------------------------------------- /sources/bind9/util/mksymtbl.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/util/mksymtbl.pl -------------------------------------------------------------------------------- /sources/bind9/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/version -------------------------------------------------------------------------------- /sources/bind9/win32utils/Configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/win32utils/Configure -------------------------------------------------------------------------------- /sources/bind9/win32utils/GeoIP.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/win32utils/GeoIP.diff -------------------------------------------------------------------------------- /sources/bind9/win32utils/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/win32utils/build.txt -------------------------------------------------------------------------------- /sources/bind9/win32utils/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/bind9/win32utils/index.html -------------------------------------------------------------------------------- /sources/curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/curses.h -------------------------------------------------------------------------------- /sources/gmt2local.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/gmt2local.c -------------------------------------------------------------------------------- /sources/gmt2local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/gmt2local.h -------------------------------------------------------------------------------- /sources/libtelnet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/LICENSE -------------------------------------------------------------------------------- /sources/libtelnet/auth-proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/auth-proto.h -------------------------------------------------------------------------------- /sources/libtelnet/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/auth.c -------------------------------------------------------------------------------- /sources/libtelnet/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/auth.h -------------------------------------------------------------------------------- /sources/libtelnet/enc-proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/enc-proto.h -------------------------------------------------------------------------------- /sources/libtelnet/enc_des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/enc_des.c -------------------------------------------------------------------------------- /sources/libtelnet/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/encrypt.c -------------------------------------------------------------------------------- /sources/libtelnet/encrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/encrypt.h -------------------------------------------------------------------------------- /sources/libtelnet/forward.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/forward.c -------------------------------------------------------------------------------- /sources/libtelnet/genget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/genget.c -------------------------------------------------------------------------------- /sources/libtelnet/getent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/getent.c -------------------------------------------------------------------------------- /sources/libtelnet/kerberos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/kerberos.c -------------------------------------------------------------------------------- /sources/libtelnet/kerberos5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/kerberos5.c -------------------------------------------------------------------------------- /sources/libtelnet/key-proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/key-proto.h -------------------------------------------------------------------------------- /sources/libtelnet/krb4encpwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/krb4encpwd.c -------------------------------------------------------------------------------- /sources/libtelnet/libtelnet.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/libtelnet.plist -------------------------------------------------------------------------------- /sources/libtelnet/misc-proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/misc-proto.h -------------------------------------------------------------------------------- /sources/libtelnet/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/misc.c -------------------------------------------------------------------------------- /sources/libtelnet/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/misc.h -------------------------------------------------------------------------------- /sources/libtelnet/pk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/pk.c -------------------------------------------------------------------------------- /sources/libtelnet/pk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/pk.h -------------------------------------------------------------------------------- /sources/libtelnet/read_password.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/read_password.c -------------------------------------------------------------------------------- /sources/libtelnet/rsaencpwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/rsaencpwd.c -------------------------------------------------------------------------------- /sources/libtelnet/sra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/libtelnet/sra.c -------------------------------------------------------------------------------- /sources/mptcp_client/conn_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/mptcp_client/conn_lib.c -------------------------------------------------------------------------------- /sources/mptcp_client/conn_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/mptcp_client/conn_lib.h -------------------------------------------------------------------------------- /sources/netcat/atomicio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/netcat/atomicio.c -------------------------------------------------------------------------------- /sources/netcat/atomicio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/netcat/atomicio.h -------------------------------------------------------------------------------- /sources/netcat/netcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/netcat/netcat.c -------------------------------------------------------------------------------- /sources/netcat/netcat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/netcat/netcat.txt -------------------------------------------------------------------------------- /sources/netcat/socks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/netcat/socks.c -------------------------------------------------------------------------------- /sources/netcat/sourceroute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/netcat/sourceroute.c -------------------------------------------------------------------------------- /sources/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/ping.c -------------------------------------------------------------------------------- /sources/ping6/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/ping6/md5.c -------------------------------------------------------------------------------- /sources/ping6/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/ping6/md5.h -------------------------------------------------------------------------------- /sources/ping6/ping6.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/ping6/ping6.8 -------------------------------------------------------------------------------- /sources/ping6/ping6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/ping6/ping6.c -------------------------------------------------------------------------------- /sources/telnet/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/telnet/README -------------------------------------------------------------------------------- /sources/telnet/authenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/telnet/authenc.c -------------------------------------------------------------------------------- /sources/telnet/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/telnet/commands.c -------------------------------------------------------------------------------- /sources/telnet/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/telnet/defines.h -------------------------------------------------------------------------------- /sources/telnet/externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/telnet/externs.h -------------------------------------------------------------------------------- /sources/telnet/fdset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/telnet/fdset.h -------------------------------------------------------------------------------- /sources/telnet/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/telnet/general.h -------------------------------------------------------------------------------- /sources/telnet/krb4-proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/telnet/krb4-proto.h -------------------------------------------------------------------------------- /sources/telnet/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/telnet/main.c -------------------------------------------------------------------------------- /sources/telnet/misc-proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/telnet/misc-proto.h -------------------------------------------------------------------------------- /sources/telnet/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/telnet/misc.h -------------------------------------------------------------------------------- /sources/telnet/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/telnet/network.c -------------------------------------------------------------------------------- /sources/telnet/old_makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/telnet/old_makefile -------------------------------------------------------------------------------- /sources/telnet/ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/telnet/ring.c -------------------------------------------------------------------------------- /sources/telnet/ring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/telnet/ring.h -------------------------------------------------------------------------------- /sources/telnet/sys_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/telnet/sys_bsd.c -------------------------------------------------------------------------------- /sources/telnet/telnet.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/telnet/telnet.1 -------------------------------------------------------------------------------- /sources/telnet/telnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/telnet/telnet.c -------------------------------------------------------------------------------- /sources/telnet/terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/telnet/terminal.c -------------------------------------------------------------------------------- /sources/telnet/tn3270.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/telnet/tn3270.c -------------------------------------------------------------------------------- /sources/telnet/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/telnet/types.h -------------------------------------------------------------------------------- /sources/telnet/utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/telnet/utilities.c -------------------------------------------------------------------------------- /sources/term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/term.h -------------------------------------------------------------------------------- /sources/unctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sources/unctrl.h -------------------------------------------------------------------------------- /sys_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sys_event.h -------------------------------------------------------------------------------- /sys_event2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sys_event2.h -------------------------------------------------------------------------------- /sys_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sys_socket.h -------------------------------------------------------------------------------- /sys_socket_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/sys_socket_old.h -------------------------------------------------------------------------------- /udptunnel/host2ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/udptunnel/host2ip.c -------------------------------------------------------------------------------- /udptunnel/host2ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/udptunnel/host2ip.h -------------------------------------------------------------------------------- /udptunnel/udptunnel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/udptunnel/udptunnel.m -------------------------------------------------------------------------------- /whois.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/whois.c -------------------------------------------------------------------------------- /wol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/wol.cpp -------------------------------------------------------------------------------- /xcfs/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/xcfs/Package.resolved -------------------------------------------------------------------------------- /xcfs/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/xcfs/Package.swift -------------------------------------------------------------------------------- /xcfs/Sources/build/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holzschu/network_ios/HEAD/xcfs/Sources/build/main.swift --------------------------------------------------------------------------------