├── .gitattributes ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── aria2c.go ├── aria2c_test.go ├── conns.go ├── download.go ├── favicon.ico ├── index.html ├── main.go ├── main_test.go ├── srv.go └── tasks.go /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanjm/file_download_proxy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanjm/file_download_proxy/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanjm/file_download_proxy/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanjm/file_download_proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanjm/file_download_proxy/HEAD/README.md -------------------------------------------------------------------------------- /aria2c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanjm/file_download_proxy/HEAD/aria2c.go -------------------------------------------------------------------------------- /aria2c_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanjm/file_download_proxy/HEAD/aria2c_test.go -------------------------------------------------------------------------------- /conns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanjm/file_download_proxy/HEAD/conns.go -------------------------------------------------------------------------------- /download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanjm/file_download_proxy/HEAD/download.go -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanjm/file_download_proxy/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanjm/file_download_proxy/HEAD/index.html -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanjm/file_download_proxy/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanjm/file_download_proxy/HEAD/main_test.go -------------------------------------------------------------------------------- /srv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanjm/file_download_proxy/HEAD/srv.go -------------------------------------------------------------------------------- /tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanjm/file_download_proxy/HEAD/tasks.go --------------------------------------------------------------------------------