├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.rst ├── appveyor.yml ├── examples ├── pseudo_http.rs └── send_myself.rs ├── src └── lib.rs └── vagga.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailhook/tk-sendfile/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailhook/tk-sendfile/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailhook/tk-sendfile/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailhook/tk-sendfile/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailhook/tk-sendfile/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailhook/tk-sendfile/HEAD/README.rst -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailhook/tk-sendfile/HEAD/appveyor.yml -------------------------------------------------------------------------------- /examples/pseudo_http.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailhook/tk-sendfile/HEAD/examples/pseudo_http.rs -------------------------------------------------------------------------------- /examples/send_myself.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailhook/tk-sendfile/HEAD/examples/send_myself.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailhook/tk-sendfile/HEAD/src/lib.rs -------------------------------------------------------------------------------- /vagga.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailhook/tk-sendfile/HEAD/vagga.yaml --------------------------------------------------------------------------------