├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── rl_http.tcl └── tests ├── all.tcl ├── common.tcl ├── keepalive_limits.test ├── rl_http.test └── tapchan.test /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | tm 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyLane/rl_http/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyLane/rl_http/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyLane/rl_http/HEAD/README.md -------------------------------------------------------------------------------- /rl_http.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyLane/rl_http/HEAD/rl_http.tcl -------------------------------------------------------------------------------- /tests/all.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyLane/rl_http/HEAD/tests/all.tcl -------------------------------------------------------------------------------- /tests/common.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyLane/rl_http/HEAD/tests/common.tcl -------------------------------------------------------------------------------- /tests/keepalive_limits.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyLane/rl_http/HEAD/tests/keepalive_limits.test -------------------------------------------------------------------------------- /tests/rl_http.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyLane/rl_http/HEAD/tests/rl_http.test -------------------------------------------------------------------------------- /tests/tapchan.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyLane/rl_http/HEAD/tests/tapchan.test --------------------------------------------------------------------------------