├── .gitignore ├── README ├── config ├── ngx_http_upstream_keepalive ├── CHANGES ├── LICENSE ├── README ├── config ├── ngx_http_upstream_keepalive_module.c └── t │ ├── fastcgi-keepalive.t │ ├── memcached-keepalive.t │ └── stale.t ├── test ├── README ├── inc │ ├── Module │ │ ├── AutoInstall.pm │ │ ├── Install.pm │ │ └── Install │ │ │ ├── AutoInstall.pm │ │ │ ├── Base.pm │ │ │ ├── Can.pm │ │ │ ├── Fetch.pm │ │ │ ├── Include.pm │ │ │ ├── Makefile.pm │ │ │ ├── Metadata.pm │ │ │ ├── TestBase.pm │ │ │ ├── Win32.pm │ │ │ └── WriteAll.pm │ ├── Spiffy.pm │ └── Test │ │ ├── Base.pm │ │ ├── Base │ │ └── Filter.pm │ │ ├── Builder.pm │ │ ├── Builder │ │ └── Module.pm │ │ └── More.pm ├── lib │ └── Test │ │ ├── Nginx.pm │ │ └── Nginx │ │ ├── LWP.pm │ │ ├── Socket.pm │ │ └── Util.pm └── t │ ├── http_buffering_off.t │ ├── http_cache.t │ ├── http_get.t │ ├── http_head.t │ ├── http_post.t │ ├── http_put.t │ └── http_store.t └── upstream_keepalive_1.0.5.patch /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.sh 3 | *.[oa] 4 | Makefile 5 | cscope* 6 | objs 7 | .hg* 8 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/README -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/config -------------------------------------------------------------------------------- /ngx_http_upstream_keepalive/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/ngx_http_upstream_keepalive/CHANGES -------------------------------------------------------------------------------- /ngx_http_upstream_keepalive/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/ngx_http_upstream_keepalive/LICENSE -------------------------------------------------------------------------------- /ngx_http_upstream_keepalive/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/ngx_http_upstream_keepalive/README -------------------------------------------------------------------------------- /ngx_http_upstream_keepalive/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/ngx_http_upstream_keepalive/config -------------------------------------------------------------------------------- /ngx_http_upstream_keepalive/ngx_http_upstream_keepalive_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/ngx_http_upstream_keepalive/ngx_http_upstream_keepalive_module.c -------------------------------------------------------------------------------- /ngx_http_upstream_keepalive/t/fastcgi-keepalive.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/ngx_http_upstream_keepalive/t/fastcgi-keepalive.t -------------------------------------------------------------------------------- /ngx_http_upstream_keepalive/t/memcached-keepalive.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/ngx_http_upstream_keepalive/t/memcached-keepalive.t -------------------------------------------------------------------------------- /ngx_http_upstream_keepalive/t/stale.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/ngx_http_upstream_keepalive/t/stale.t -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/README -------------------------------------------------------------------------------- /test/inc/Module/AutoInstall.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/inc/Module/AutoInstall.pm -------------------------------------------------------------------------------- /test/inc/Module/Install.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/inc/Module/Install.pm -------------------------------------------------------------------------------- /test/inc/Module/Install/AutoInstall.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/inc/Module/Install/AutoInstall.pm -------------------------------------------------------------------------------- /test/inc/Module/Install/Base.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/inc/Module/Install/Base.pm -------------------------------------------------------------------------------- /test/inc/Module/Install/Can.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/inc/Module/Install/Can.pm -------------------------------------------------------------------------------- /test/inc/Module/Install/Fetch.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/inc/Module/Install/Fetch.pm -------------------------------------------------------------------------------- /test/inc/Module/Install/Include.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/inc/Module/Install/Include.pm -------------------------------------------------------------------------------- /test/inc/Module/Install/Makefile.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/inc/Module/Install/Makefile.pm -------------------------------------------------------------------------------- /test/inc/Module/Install/Metadata.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/inc/Module/Install/Metadata.pm -------------------------------------------------------------------------------- /test/inc/Module/Install/TestBase.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/inc/Module/Install/TestBase.pm -------------------------------------------------------------------------------- /test/inc/Module/Install/Win32.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/inc/Module/Install/Win32.pm -------------------------------------------------------------------------------- /test/inc/Module/Install/WriteAll.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/inc/Module/Install/WriteAll.pm -------------------------------------------------------------------------------- /test/inc/Spiffy.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/inc/Spiffy.pm -------------------------------------------------------------------------------- /test/inc/Test/Base.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/inc/Test/Base.pm -------------------------------------------------------------------------------- /test/inc/Test/Base/Filter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/inc/Test/Base/Filter.pm -------------------------------------------------------------------------------- /test/inc/Test/Builder.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/inc/Test/Builder.pm -------------------------------------------------------------------------------- /test/inc/Test/Builder/Module.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/inc/Test/Builder/Module.pm -------------------------------------------------------------------------------- /test/inc/Test/More.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/inc/Test/More.pm -------------------------------------------------------------------------------- /test/lib/Test/Nginx.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/lib/Test/Nginx.pm -------------------------------------------------------------------------------- /test/lib/Test/Nginx/LWP.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/lib/Test/Nginx/LWP.pm -------------------------------------------------------------------------------- /test/lib/Test/Nginx/Socket.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/lib/Test/Nginx/Socket.pm -------------------------------------------------------------------------------- /test/lib/Test/Nginx/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/lib/Test/Nginx/Util.pm -------------------------------------------------------------------------------- /test/t/http_buffering_off.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/t/http_buffering_off.t -------------------------------------------------------------------------------- /test/t/http_cache.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/t/http_cache.t -------------------------------------------------------------------------------- /test/t/http_get.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/t/http_get.t -------------------------------------------------------------------------------- /test/t/http_head.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/t/http_head.t -------------------------------------------------------------------------------- /test/t/http_post.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/t/http_post.t -------------------------------------------------------------------------------- /test/t/http_put.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/t/http_put.t -------------------------------------------------------------------------------- /test/t/http_store.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/test/t/http_store.t -------------------------------------------------------------------------------- /upstream_keepalive_1.0.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoweibin/nginx_upstream_keepalive_patch/HEAD/upstream_keepalive_1.0.5.patch --------------------------------------------------------------------------------