├── .github └── workflows │ └── test.yaml ├── LICENSE ├── Makefile ├── README.md ├── accelerated-domains.china.conf ├── apple.china.conf ├── autoupdater.rb ├── bogus-nxdomain.china.conf ├── cdn-testlist.txt ├── dnsmasq-update-china-list ├── find_redundant.rb ├── gems.rb ├── google.china.conf ├── install.sh ├── ns-blacklist.txt ├── ns-whitelist.txt ├── removed-cdn.txt ├── test └── redundant.rb ├── updater.rb └── verify.rb /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/HEAD/README.md -------------------------------------------------------------------------------- /accelerated-domains.china.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/HEAD/accelerated-domains.china.conf -------------------------------------------------------------------------------- /apple.china.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/HEAD/apple.china.conf -------------------------------------------------------------------------------- /autoupdater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/HEAD/autoupdater.rb -------------------------------------------------------------------------------- /bogus-nxdomain.china.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/HEAD/bogus-nxdomain.china.conf -------------------------------------------------------------------------------- /cdn-testlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/HEAD/cdn-testlist.txt -------------------------------------------------------------------------------- /dnsmasq-update-china-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/HEAD/dnsmasq-update-china-list -------------------------------------------------------------------------------- /find_redundant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/HEAD/find_redundant.rb -------------------------------------------------------------------------------- /gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/HEAD/gems.rb -------------------------------------------------------------------------------- /google.china.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/HEAD/google.china.conf -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/HEAD/install.sh -------------------------------------------------------------------------------- /ns-blacklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/HEAD/ns-blacklist.txt -------------------------------------------------------------------------------- /ns-whitelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/HEAD/ns-whitelist.txt -------------------------------------------------------------------------------- /removed-cdn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/HEAD/removed-cdn.txt -------------------------------------------------------------------------------- /test/redundant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/HEAD/test/redundant.rb -------------------------------------------------------------------------------- /updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/HEAD/updater.rb -------------------------------------------------------------------------------- /verify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/HEAD/verify.rb --------------------------------------------------------------------------------