├── LICENSE ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac └── src ├── Makefile.am └── fastdns.cpp /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackgfw/fastdns/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackgfw/fastdns/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackgfw/fastdns/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackgfw/fastdns/HEAD/configure.ac -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackgfw/fastdns/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/fastdns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackgfw/fastdns/HEAD/src/fastdns.cpp --------------------------------------------------------------------------------