├── .gitignore ├── CREDITS ├── GPL ├── Makefile ├── README ├── archive ├── firedns.c └── firestring.c ├── dist └── config.mak ├── doc ├── dns.txt ├── mxps-old.txt └── spf-draft-20040209.txt ├── examples ├── fdnscname.c ├── fdnsip.c ├── fdnsip6.c ├── fdnsip6list.c ├── fdnsiplist.c ├── fdnsmx.c ├── fdnsmxalist.c ├── fdnsmxlist.c ├── fdnsname.c ├── fdnsnamep.c ├── fdnsspf1.c ├── fdnstxt.c └── fdnstxtlist.c ├── include └── firedns.h ├── lib └── dummy ├── man ├── fdnscname.1 ├── fdnsip.1 ├── fdnsip6.1 ├── fdnsip6list.1 ├── fdnsiplist.1 ├── fdnsmx.1 ├── fdnsmxalist.1 ├── fdnsmxlist.1 ├── fdnsname.1 ├── fdnsnamep.1 ├── fdnsspf1.1 ├── fdnstxt.1 ├── fdnstxtlist.1 ├── firedns_aton4.3 ├── firedns_aton6.3 ├── firedns_dnsbl_lookup.3 ├── firedns_free_mxalist.3 ├── firedns_getcname.3 ├── firedns_getip4.3 ├── firedns_getip4list.3 ├── firedns_getip6.3 ├── firedns_getip6list.3 ├── firedns_getmx.3 ├── firedns_getmxlist.3 ├── firedns_getname4.3 ├── firedns_getname6.3 ├── firedns_getresult.3 ├── firedns_gettxt.3 ├── firedns_gettxtlist.3 ├── firedns_ntoa4.3 ├── firedns_ntoa6.3 ├── firedns_resolvecname.3 ├── firedns_resolveip4.3 ├── firedns_resolveip4list.3 ├── firedns_resolveip6.3 ├── firedns_resolveip6list.3 ├── firedns_resolvemx.3 ├── firedns_resolvemxalist.3 ├── firedns_resolvemxlist.3 ├── firedns_resolvename4.3 ├── firedns_resolvename6.3 ├── firedns_resolvetxt.3 ├── firedns_resolvetxtlist.3 └── libfiredns.3 ├── src ├── firedns_add_query.c ├── firedns_add_server.c ├── firedns_add_servers_from_resolv_conf.c ├── firedns_align.c ├── firedns_aton4.c ├── firedns_aton6.c ├── firedns_build_query_payload.c ├── firedns_close.c ├── firedns_empty_header.c ├── firedns_fill_header.c ├── firedns_fill_rr.c ├── firedns_free_mxalist.c ├── firedns_freeconn.c ├── firedns_getcname.c ├── firedns_getconn.c ├── firedns_getip4.c ├── firedns_getip4list.c ├── firedns_getip6.c ├── firedns_getip6list.c ├── firedns_getmx.c ├── firedns_getmxlist.c ├── firedns_getname4.c ├── firedns_getname6.c ├── firedns_getresult.c ├── firedns_gettxt.c ├── firedns_gettxtlist.c ├── firedns_init.c ├── firedns_internal.h ├── firedns_ntoa4.c ├── firedns_ntoa6.c ├── firedns_resolvecname.c ├── firedns_resolveip4.c ├── firedns_resolveip4list.c ├── firedns_resolveip6.c ├── firedns_resolveip6list.c ├── firedns_resolvemx.c ├── firedns_resolvemxalist.c ├── firedns_resolvemxlist.c ├── firedns_resolvename4.c ├── firedns_resolvename6.c ├── firedns_resolvetxt.c ├── firedns_resolvetxtlist.c ├── firedns_send_requests.c ├── firedns_variables_mx_name.c └── firedns_variables_mx_port.c └── tests ├── benchmark.c └── tester.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/.gitignore -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/CREDITS -------------------------------------------------------------------------------- /GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/GPL -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/README -------------------------------------------------------------------------------- /archive/firedns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/archive/firedns.c -------------------------------------------------------------------------------- /archive/firestring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/archive/firestring.c -------------------------------------------------------------------------------- /dist/config.mak: -------------------------------------------------------------------------------- 1 | #enable this for ipv6 code 2 | #CFLAGS+=-DHAVE_IPV6 3 | 4 | -------------------------------------------------------------------------------- /doc/dns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/doc/dns.txt -------------------------------------------------------------------------------- /doc/mxps-old.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/doc/mxps-old.txt -------------------------------------------------------------------------------- /doc/spf-draft-20040209.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/doc/spf-draft-20040209.txt -------------------------------------------------------------------------------- /examples/fdnscname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/examples/fdnscname.c -------------------------------------------------------------------------------- /examples/fdnsip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/examples/fdnsip.c -------------------------------------------------------------------------------- /examples/fdnsip6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/examples/fdnsip6.c -------------------------------------------------------------------------------- /examples/fdnsip6list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/examples/fdnsip6list.c -------------------------------------------------------------------------------- /examples/fdnsiplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/examples/fdnsiplist.c -------------------------------------------------------------------------------- /examples/fdnsmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/examples/fdnsmx.c -------------------------------------------------------------------------------- /examples/fdnsmxalist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/examples/fdnsmxalist.c -------------------------------------------------------------------------------- /examples/fdnsmxlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/examples/fdnsmxlist.c -------------------------------------------------------------------------------- /examples/fdnsname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/examples/fdnsname.c -------------------------------------------------------------------------------- /examples/fdnsnamep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/examples/fdnsnamep.c -------------------------------------------------------------------------------- /examples/fdnsspf1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/examples/fdnsspf1.c -------------------------------------------------------------------------------- /examples/fdnstxt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/examples/fdnstxt.c -------------------------------------------------------------------------------- /examples/fdnstxtlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/examples/fdnstxtlist.c -------------------------------------------------------------------------------- /include/firedns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/include/firedns.h -------------------------------------------------------------------------------- /lib/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/fdnscname.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/fdnscname.1 -------------------------------------------------------------------------------- /man/fdnsip.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/fdnsip.1 -------------------------------------------------------------------------------- /man/fdnsip6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/fdnsip6.1 -------------------------------------------------------------------------------- /man/fdnsip6list.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/fdnsip6list.1 -------------------------------------------------------------------------------- /man/fdnsiplist.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/fdnsiplist.1 -------------------------------------------------------------------------------- /man/fdnsmx.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/fdnsmx.1 -------------------------------------------------------------------------------- /man/fdnsmxalist.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/fdnsmxalist.1 -------------------------------------------------------------------------------- /man/fdnsmxlist.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/fdnsmxlist.1 -------------------------------------------------------------------------------- /man/fdnsname.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/fdnsname.1 -------------------------------------------------------------------------------- /man/fdnsnamep.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/fdnsnamep.1 -------------------------------------------------------------------------------- /man/fdnsspf1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/fdnsspf1.1 -------------------------------------------------------------------------------- /man/fdnstxt.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/fdnstxt.1 -------------------------------------------------------------------------------- /man/fdnstxtlist.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/fdnstxtlist.1 -------------------------------------------------------------------------------- /man/firedns_aton4.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_aton4.3 -------------------------------------------------------------------------------- /man/firedns_aton6.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_aton6.3 -------------------------------------------------------------------------------- /man/firedns_dnsbl_lookup.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_dnsbl_lookup.3 -------------------------------------------------------------------------------- /man/firedns_free_mxalist.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_free_mxalist.3 -------------------------------------------------------------------------------- /man/firedns_getcname.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_getcname.3 -------------------------------------------------------------------------------- /man/firedns_getip4.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_getip4.3 -------------------------------------------------------------------------------- /man/firedns_getip4list.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_getip4list.3 -------------------------------------------------------------------------------- /man/firedns_getip6.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_getip6.3 -------------------------------------------------------------------------------- /man/firedns_getip6list.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_getip6list.3 -------------------------------------------------------------------------------- /man/firedns_getmx.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_getmx.3 -------------------------------------------------------------------------------- /man/firedns_getmxlist.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_getmxlist.3 -------------------------------------------------------------------------------- /man/firedns_getname4.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_getname4.3 -------------------------------------------------------------------------------- /man/firedns_getname6.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_getname6.3 -------------------------------------------------------------------------------- /man/firedns_getresult.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_getresult.3 -------------------------------------------------------------------------------- /man/firedns_gettxt.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_gettxt.3 -------------------------------------------------------------------------------- /man/firedns_gettxtlist.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_gettxtlist.3 -------------------------------------------------------------------------------- /man/firedns_ntoa4.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_ntoa4.3 -------------------------------------------------------------------------------- /man/firedns_ntoa6.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_ntoa6.3 -------------------------------------------------------------------------------- /man/firedns_resolvecname.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_resolvecname.3 -------------------------------------------------------------------------------- /man/firedns_resolveip4.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_resolveip4.3 -------------------------------------------------------------------------------- /man/firedns_resolveip4list.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_resolveip4list.3 -------------------------------------------------------------------------------- /man/firedns_resolveip6.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_resolveip6.3 -------------------------------------------------------------------------------- /man/firedns_resolveip6list.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_resolveip6list.3 -------------------------------------------------------------------------------- /man/firedns_resolvemx.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_resolvemx.3 -------------------------------------------------------------------------------- /man/firedns_resolvemxalist.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_resolvemxalist.3 -------------------------------------------------------------------------------- /man/firedns_resolvemxlist.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_resolvemxlist.3 -------------------------------------------------------------------------------- /man/firedns_resolvename4.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_resolvename4.3 -------------------------------------------------------------------------------- /man/firedns_resolvename6.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_resolvename6.3 -------------------------------------------------------------------------------- /man/firedns_resolvetxt.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_resolvetxt.3 -------------------------------------------------------------------------------- /man/firedns_resolvetxtlist.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/firedns_resolvetxtlist.3 -------------------------------------------------------------------------------- /man/libfiredns.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/man/libfiredns.3 -------------------------------------------------------------------------------- /src/firedns_add_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_add_query.c -------------------------------------------------------------------------------- /src/firedns_add_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_add_server.c -------------------------------------------------------------------------------- /src/firedns_add_servers_from_resolv_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_add_servers_from_resolv_conf.c -------------------------------------------------------------------------------- /src/firedns_align.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_align.c -------------------------------------------------------------------------------- /src/firedns_aton4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_aton4.c -------------------------------------------------------------------------------- /src/firedns_aton6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_aton6.c -------------------------------------------------------------------------------- /src/firedns_build_query_payload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_build_query_payload.c -------------------------------------------------------------------------------- /src/firedns_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_close.c -------------------------------------------------------------------------------- /src/firedns_empty_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_empty_header.c -------------------------------------------------------------------------------- /src/firedns_fill_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_fill_header.c -------------------------------------------------------------------------------- /src/firedns_fill_rr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_fill_rr.c -------------------------------------------------------------------------------- /src/firedns_free_mxalist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_free_mxalist.c -------------------------------------------------------------------------------- /src/firedns_freeconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_freeconn.c -------------------------------------------------------------------------------- /src/firedns_getcname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_getcname.c -------------------------------------------------------------------------------- /src/firedns_getconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_getconn.c -------------------------------------------------------------------------------- /src/firedns_getip4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_getip4.c -------------------------------------------------------------------------------- /src/firedns_getip4list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_getip4list.c -------------------------------------------------------------------------------- /src/firedns_getip6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_getip6.c -------------------------------------------------------------------------------- /src/firedns_getip6list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_getip6list.c -------------------------------------------------------------------------------- /src/firedns_getmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_getmx.c -------------------------------------------------------------------------------- /src/firedns_getmxlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_getmxlist.c -------------------------------------------------------------------------------- /src/firedns_getname4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_getname4.c -------------------------------------------------------------------------------- /src/firedns_getname6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_getname6.c -------------------------------------------------------------------------------- /src/firedns_getresult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_getresult.c -------------------------------------------------------------------------------- /src/firedns_gettxt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_gettxt.c -------------------------------------------------------------------------------- /src/firedns_gettxtlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_gettxtlist.c -------------------------------------------------------------------------------- /src/firedns_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_init.c -------------------------------------------------------------------------------- /src/firedns_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_internal.h -------------------------------------------------------------------------------- /src/firedns_ntoa4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_ntoa4.c -------------------------------------------------------------------------------- /src/firedns_ntoa6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_ntoa6.c -------------------------------------------------------------------------------- /src/firedns_resolvecname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_resolvecname.c -------------------------------------------------------------------------------- /src/firedns_resolveip4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_resolveip4.c -------------------------------------------------------------------------------- /src/firedns_resolveip4list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_resolveip4list.c -------------------------------------------------------------------------------- /src/firedns_resolveip6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_resolveip6.c -------------------------------------------------------------------------------- /src/firedns_resolveip6list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_resolveip6list.c -------------------------------------------------------------------------------- /src/firedns_resolvemx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_resolvemx.c -------------------------------------------------------------------------------- /src/firedns_resolvemxalist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_resolvemxalist.c -------------------------------------------------------------------------------- /src/firedns_resolvemxlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_resolvemxlist.c -------------------------------------------------------------------------------- /src/firedns_resolvename4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_resolvename4.c -------------------------------------------------------------------------------- /src/firedns_resolvename6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_resolvename6.c -------------------------------------------------------------------------------- /src/firedns_resolvetxt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_resolvetxt.c -------------------------------------------------------------------------------- /src/firedns_resolvetxtlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_resolvetxtlist.c -------------------------------------------------------------------------------- /src/firedns_send_requests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_send_requests.c -------------------------------------------------------------------------------- /src/firedns_variables_mx_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_variables_mx_name.c -------------------------------------------------------------------------------- /src/firedns_variables_mx_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/src/firedns_variables_mx_port.c -------------------------------------------------------------------------------- /tests/benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/tests/benchmark.c -------------------------------------------------------------------------------- /tests/tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/firedns/HEAD/tests/tester.c --------------------------------------------------------------------------------