├── .gitignore ├── .travis.yml ├── Makefile ├── README.md ├── lib └── resty │ └── httpipe.lua ├── lua-resty-httpipe-0.05-1.rockspec ├── t ├── 01-basic.t ├── 02-filter.t ├── 03-stream.t ├── 04-simpleinterface.t ├── 05-maxsize.t ├── 06-eof.t ├── 07-timeout.t ├── 08-escape_uri.t ├── 09-parse_uri.t ├── 10-chunkin.t └── 11-http_version.t └── util └── lua-releng /.gitignore: -------------------------------------------------------------------------------- 1 | t/servroot/ 2 | t/error.log 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timebug/lua-resty-httpipe/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timebug/lua-resty-httpipe/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timebug/lua-resty-httpipe/HEAD/README.md -------------------------------------------------------------------------------- /lib/resty/httpipe.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timebug/lua-resty-httpipe/HEAD/lib/resty/httpipe.lua -------------------------------------------------------------------------------- /lua-resty-httpipe-0.05-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timebug/lua-resty-httpipe/HEAD/lua-resty-httpipe-0.05-1.rockspec -------------------------------------------------------------------------------- /t/01-basic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timebug/lua-resty-httpipe/HEAD/t/01-basic.t -------------------------------------------------------------------------------- /t/02-filter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timebug/lua-resty-httpipe/HEAD/t/02-filter.t -------------------------------------------------------------------------------- /t/03-stream.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timebug/lua-resty-httpipe/HEAD/t/03-stream.t -------------------------------------------------------------------------------- /t/04-simpleinterface.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timebug/lua-resty-httpipe/HEAD/t/04-simpleinterface.t -------------------------------------------------------------------------------- /t/05-maxsize.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timebug/lua-resty-httpipe/HEAD/t/05-maxsize.t -------------------------------------------------------------------------------- /t/06-eof.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timebug/lua-resty-httpipe/HEAD/t/06-eof.t -------------------------------------------------------------------------------- /t/07-timeout.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timebug/lua-resty-httpipe/HEAD/t/07-timeout.t -------------------------------------------------------------------------------- /t/08-escape_uri.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timebug/lua-resty-httpipe/HEAD/t/08-escape_uri.t -------------------------------------------------------------------------------- /t/09-parse_uri.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timebug/lua-resty-httpipe/HEAD/t/09-parse_uri.t -------------------------------------------------------------------------------- /t/10-chunkin.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timebug/lua-resty-httpipe/HEAD/t/10-chunkin.t -------------------------------------------------------------------------------- /t/11-http_version.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timebug/lua-resty-httpipe/HEAD/t/11-http_version.t -------------------------------------------------------------------------------- /util/lua-releng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timebug/lua-resty-httpipe/HEAD/util/lua-releng --------------------------------------------------------------------------------