├── 1.png ├── LICENSE ├── README.md ├── client ├── cdncheck.go ├── data │ ├── sources_china.json │ └── sources_data.json ├── ipdb │ ├── base.go │ ├── city.go │ ├── data.go │ ├── district.go │ ├── idc.go │ ├── ipip.go │ ├── ipipfree.ipdb │ └── reader.go ├── other.go ├── sources_data.go └── types.go ├── cmd └── api.go ├── config └── config.go ├── go.mod ├── go.sum └── main.go /1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbufei/isCdn/HEAD/1.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbufei/isCdn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbufei/isCdn/HEAD/README.md -------------------------------------------------------------------------------- /client/cdncheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbufei/isCdn/HEAD/client/cdncheck.go -------------------------------------------------------------------------------- /client/data/sources_china.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbufei/isCdn/HEAD/client/data/sources_china.json -------------------------------------------------------------------------------- /client/data/sources_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbufei/isCdn/HEAD/client/data/sources_data.json -------------------------------------------------------------------------------- /client/ipdb/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbufei/isCdn/HEAD/client/ipdb/base.go -------------------------------------------------------------------------------- /client/ipdb/city.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbufei/isCdn/HEAD/client/ipdb/city.go -------------------------------------------------------------------------------- /client/ipdb/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbufei/isCdn/HEAD/client/ipdb/data.go -------------------------------------------------------------------------------- /client/ipdb/district.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbufei/isCdn/HEAD/client/ipdb/district.go -------------------------------------------------------------------------------- /client/ipdb/idc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbufei/isCdn/HEAD/client/ipdb/idc.go -------------------------------------------------------------------------------- /client/ipdb/ipip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbufei/isCdn/HEAD/client/ipdb/ipip.go -------------------------------------------------------------------------------- /client/ipdb/ipipfree.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbufei/isCdn/HEAD/client/ipdb/ipipfree.ipdb -------------------------------------------------------------------------------- /client/ipdb/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbufei/isCdn/HEAD/client/ipdb/reader.go -------------------------------------------------------------------------------- /client/other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbufei/isCdn/HEAD/client/other.go -------------------------------------------------------------------------------- /client/sources_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbufei/isCdn/HEAD/client/sources_data.go -------------------------------------------------------------------------------- /client/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbufei/isCdn/HEAD/client/types.go -------------------------------------------------------------------------------- /cmd/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbufei/isCdn/HEAD/cmd/api.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbufei/isCdn/HEAD/config/config.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbufei/isCdn/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbufei/isCdn/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbufei/isCdn/HEAD/main.go --------------------------------------------------------------------------------