├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── config ├── ngx_http_subrange_module.c ├── ngx_http_subrange_module.h ├── release.sh └── test ├── fcgi ├── README.md ├── create_rand10m.py ├── download.py ├── nginx.conf └── test_download.py └── unit ├── README ├── configure └── test_subrange.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/ngx_http_subrange_module/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/ngx_http_subrange_module/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/ngx_http_subrange_module/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/ngx_http_subrange_module/HEAD/README.md -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/ngx_http_subrange_module/HEAD/config -------------------------------------------------------------------------------- /ngx_http_subrange_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/ngx_http_subrange_module/HEAD/ngx_http_subrange_module.c -------------------------------------------------------------------------------- /ngx_http_subrange_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/ngx_http_subrange_module/HEAD/ngx_http_subrange_module.h -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/ngx_http_subrange_module/HEAD/release.sh -------------------------------------------------------------------------------- /test/fcgi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/ngx_http_subrange_module/HEAD/test/fcgi/README.md -------------------------------------------------------------------------------- /test/fcgi/create_rand10m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/ngx_http_subrange_module/HEAD/test/fcgi/create_rand10m.py -------------------------------------------------------------------------------- /test/fcgi/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/ngx_http_subrange_module/HEAD/test/fcgi/download.py -------------------------------------------------------------------------------- /test/fcgi/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/ngx_http_subrange_module/HEAD/test/fcgi/nginx.conf -------------------------------------------------------------------------------- /test/fcgi/test_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/ngx_http_subrange_module/HEAD/test/fcgi/test_download.py -------------------------------------------------------------------------------- /test/unit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/ngx_http_subrange_module/HEAD/test/unit/README -------------------------------------------------------------------------------- /test/unit/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/ngx_http_subrange_module/HEAD/test/unit/configure -------------------------------------------------------------------------------- /test/unit/test_subrange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/ngx_http_subrange_module/HEAD/test/unit/test_subrange.c --------------------------------------------------------------------------------