├── COPYRIGHT ├── README-windows.txt ├── README.md ├── bundle ├── LuaJIT-2.1-20180420 │ ├── .gitignore │ ├── .travis.yml │ ├── COPYRIGHT │ ├── Makefile │ ├── README │ ├── doc │ │ ├── bluequad-print.css │ │ ├── bluequad.css │ │ ├── changes.html │ │ ├── contact.html │ │ ├── ext_c_api.html │ │ ├── ext_ffi.html │ │ ├── ext_ffi_api.html │ │ ├── ext_ffi_semantics.html │ │ ├── ext_ffi_tutorial.html │ │ ├── ext_jit.html │ │ ├── ext_profiler.html │ │ ├── extensions.html │ │ ├── faq.html │ │ ├── img │ │ │ └── contact.png │ │ ├── install.html │ │ ├── luajit.html │ │ ├── running.html │ │ └── status.html │ ├── dynasm │ │ ├── dasm_arm.h │ │ ├── dasm_arm.lua │ │ ├── dasm_arm64.h │ │ ├── dasm_arm64.lua │ │ ├── dasm_mips.h │ │ ├── dasm_mips.lua │ │ ├── dasm_mips64.lua │ │ ├── dasm_ppc.h │ │ ├── dasm_ppc.lua │ │ ├── dasm_proto.h │ │ ├── dasm_x64.lua │ │ ├── dasm_x86.h │ │ ├── dasm_x86.lua │ │ └── dynasm.lua │ ├── etc │ │ ├── luajit.1 │ │ └── luajit.pc │ └── src │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── host │ │ ├── .gitignore │ │ ├── README │ │ ├── buildvm.c │ │ ├── buildvm.h │ │ ├── buildvm_asm.c │ │ ├── buildvm_fold.c │ │ ├── buildvm_lib.c │ │ ├── buildvm_libbc.h │ │ ├── buildvm_peobj.c │ │ ├── genlibbc.lua │ │ ├── genminilua.lua │ │ └── minilua.c │ │ ├── jit │ │ ├── .gitignore │ │ ├── bc.lua │ │ ├── bcsave.lua │ │ ├── dis_arm.lua │ │ ├── dis_arm64.lua │ │ ├── dis_arm64be.lua │ │ ├── dis_mips.lua │ │ ├── dis_mips64.lua │ │ ├── dis_mips64el.lua │ │ ├── dis_mipsel.lua │ │ ├── dis_ppc.lua │ │ ├── dis_x64.lua │ │ ├── dis_x86.lua │ │ ├── dump.lua │ │ ├── p.lua │ │ ├── v.lua │ │ └── zone.lua │ │ ├── lauxlib.h │ │ ├── lib_aux.c │ │ ├── lib_base.c │ │ ├── lib_bit.c │ │ ├── lib_debug.c │ │ ├── lib_ffi.c │ │ ├── lib_init.c │ │ ├── lib_io.c │ │ ├── lib_jit.c │ │ ├── lib_math.c │ │ ├── lib_os.c │ │ ├── lib_package.c │ │ ├── lib_string.c │ │ ├── lib_table.c │ │ ├── lj.supp │ │ ├── lj_alloc.c │ │ ├── lj_alloc.h │ │ ├── lj_api.c │ │ ├── lj_arch.h │ │ ├── lj_asm.c │ │ ├── lj_asm.h │ │ ├── lj_asm_arm.h │ │ ├── lj_asm_arm64.h │ │ ├── lj_asm_mips.h │ │ ├── lj_asm_ppc.h │ │ ├── lj_asm_x86.h │ │ ├── lj_bc.c │ │ ├── lj_bc.h │ │ ├── lj_bcdump.h │ │ ├── lj_bcread.c │ │ ├── lj_bcwrite.c │ │ ├── lj_buf.c │ │ ├── lj_buf.h │ │ ├── lj_carith.c │ │ ├── lj_carith.h │ │ ├── lj_ccall.c │ │ ├── lj_ccall.h │ │ ├── lj_ccallback.c │ │ ├── lj_ccallback.h │ │ ├── lj_cconv.c │ │ ├── lj_cconv.h │ │ ├── lj_cdata.c │ │ ├── lj_cdata.h │ │ ├── lj_char.c │ │ ├── lj_char.h │ │ ├── lj_clib.c │ │ ├── lj_clib.h │ │ ├── lj_cparse.c │ │ ├── lj_cparse.h │ │ ├── lj_crecord.c │ │ ├── lj_crecord.h │ │ ├── lj_ctype.c │ │ ├── lj_ctype.h │ │ ├── lj_debug.c │ │ ├── lj_debug.h │ │ ├── lj_def.h │ │ ├── lj_dispatch.c │ │ ├── lj_dispatch.h │ │ ├── lj_emit_arm.h │ │ ├── lj_emit_arm64.h │ │ ├── lj_emit_mips.h │ │ ├── lj_emit_ppc.h │ │ ├── lj_emit_x86.h │ │ ├── lj_err.c │ │ ├── lj_err.h │ │ ├── lj_errmsg.h │ │ ├── lj_ff.h │ │ ├── lj_ffrecord.c │ │ ├── lj_ffrecord.h │ │ ├── lj_frame.h │ │ ├── lj_func.c │ │ ├── lj_func.h │ │ ├── lj_gc.c │ │ ├── lj_gc.h │ │ ├── lj_gdbjit.c │ │ ├── lj_gdbjit.h │ │ ├── lj_ir.c │ │ ├── lj_ir.h │ │ ├── lj_ircall.h │ │ ├── lj_iropt.h │ │ ├── lj_jit.h │ │ ├── lj_lex.c │ │ ├── lj_lex.h │ │ ├── lj_lib.c │ │ ├── lj_lib.h │ │ ├── lj_load.c │ │ ├── lj_mcode.c │ │ ├── lj_mcode.h │ │ ├── lj_meta.c │ │ ├── lj_meta.h │ │ ├── lj_obj.c │ │ ├── lj_obj.h │ │ ├── lj_opt_dce.c │ │ ├── lj_opt_fold.c │ │ ├── lj_opt_loop.c │ │ ├── lj_opt_mem.c │ │ ├── lj_opt_narrow.c │ │ ├── lj_opt_sink.c │ │ ├── lj_opt_split.c │ │ ├── lj_parse.c │ │ ├── lj_parse.h │ │ ├── lj_profile.c │ │ ├── lj_profile.h │ │ ├── lj_record.c │ │ ├── lj_record.h │ │ ├── lj_snap.c │ │ ├── lj_snap.h │ │ ├── lj_state.c │ │ ├── lj_state.h │ │ ├── lj_str.c │ │ ├── lj_str.h │ │ ├── lj_strfmt.c │ │ ├── lj_strfmt.h │ │ ├── lj_strfmt_num.c │ │ ├── lj_strscan.c │ │ ├── lj_strscan.h │ │ ├── lj_tab.c │ │ ├── lj_tab.h │ │ ├── lj_target.h │ │ ├── lj_target_arm.h │ │ ├── lj_target_arm64.h │ │ ├── lj_target_mips.h │ │ ├── lj_target_ppc.h │ │ ├── lj_target_x86.h │ │ ├── lj_trace.c │ │ ├── lj_trace.h │ │ ├── lj_traceerr.h │ │ ├── lj_udata.c │ │ ├── lj_udata.h │ │ ├── lj_vm.h │ │ ├── lj_vmevent.c │ │ ├── lj_vmevent.h │ │ ├── lj_vmmath.c │ │ ├── ljamalg.c │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luaconf.h │ │ ├── luajit.c │ │ ├── luajit.h │ │ ├── lualib.h │ │ ├── msvcbuild.bat │ │ ├── ps4build.bat │ │ ├── psvitabuild.bat │ │ ├── vm_arm.dasc │ │ ├── vm_arm64.dasc │ │ ├── vm_mips.dasc │ │ ├── vm_mips64.dasc │ │ ├── vm_ppc.dasc │ │ ├── vm_x64.dasc │ │ ├── vm_x86.dasc │ │ ├── x64 │ │ ├── Makefile │ │ ├── src │ │ │ └── lj_str_hash_x64.h │ │ └── test │ │ │ ├── Makefile │ │ │ ├── benchmark.cxx │ │ │ ├── test.cpp │ │ │ ├── test_str_comp.lua │ │ │ ├── test_util.cxx │ │ │ ├── test_util.hpp │ │ │ ├── unit │ │ │ └── ffi │ │ │ │ ├── test_abi.lua │ │ │ │ ├── test_line_directive.lua │ │ │ │ ├── test_pragma_pack_pushpop.lua │ │ │ │ └── test_var_attribute.lua │ │ │ └── unit_test.sh │ │ ├── xb1build.bat │ │ └── xedkbuild.bat ├── array-var-nginx-module-0.05 │ ├── .gitattributes │ ├── .gitignore │ ├── config │ ├── src │ │ ├── ddebug.h │ │ ├── ngx_http_array_var_module.c │ │ ├── ngx_http_array_var_util.c │ │ └── ngx_http_array_var_util.h │ ├── t │ │ └── sanity.t │ ├── util │ │ └── build.sh │ └── valgrind.suppress ├── drizzle-nginx-module-0.1.11 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── Changes │ ├── config │ ├── doc │ │ └── design │ ├── src │ │ ├── ddebug.h │ │ ├── ngx_http_drizzle_checker.c │ │ ├── ngx_http_drizzle_checker.h │ │ ├── ngx_http_drizzle_handler.c │ │ ├── ngx_http_drizzle_handler.h │ │ ├── ngx_http_drizzle_keepalive.c │ │ ├── ngx_http_drizzle_keepalive.h │ │ ├── ngx_http_drizzle_module.c │ │ ├── ngx_http_drizzle_module.h │ │ ├── ngx_http_drizzle_output.c │ │ ├── ngx_http_drizzle_output.h │ │ ├── ngx_http_drizzle_processor.c │ │ ├── ngx_http_drizzle_processor.h │ │ ├── ngx_http_drizzle_quoting.c │ │ ├── ngx_http_drizzle_quoting.h │ │ ├── ngx_http_drizzle_upstream.c │ │ ├── ngx_http_drizzle_upstream.h │ │ ├── ngx_http_drizzle_util.c │ │ ├── ngx_http_drizzle_util.h │ │ └── resty_dbd_stream.h │ ├── t │ │ ├── 000_init.t │ │ ├── bugs.t │ │ ├── charset │ │ │ ├── 000_init.t │ │ │ ├── errors.t │ │ │ ├── keepalive.t │ │ │ ├── methods.t │ │ │ ├── sanity.t │ │ │ └── timeout.t │ │ ├── errors.t │ │ ├── keepalive.t │ │ ├── methods.t │ │ ├── sanity.t │ │ ├── status.t │ │ └── timeout.t │ ├── util │ │ ├── build.sh │ │ ├── ngx-links │ │ ├── update-readme.sh │ │ └── wiki2pod.pl │ └── valgrind.suppress ├── echo-nginx-module-0.61 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── config │ ├── src │ │ ├── ddebug.h │ │ ├── ngx_http_echo_echo.c │ │ ├── ngx_http_echo_echo.h │ │ ├── ngx_http_echo_filter.c │ │ ├── ngx_http_echo_filter.h │ │ ├── ngx_http_echo_foreach.c │ │ ├── ngx_http_echo_foreach.h │ │ ├── ngx_http_echo_handler.c │ │ ├── ngx_http_echo_handler.h │ │ ├── ngx_http_echo_location.c │ │ ├── ngx_http_echo_location.h │ │ ├── ngx_http_echo_module.c │ │ ├── ngx_http_echo_module.h │ │ ├── ngx_http_echo_request_info.c │ │ ├── ngx_http_echo_request_info.h │ │ ├── ngx_http_echo_sleep.c │ │ ├── ngx_http_echo_sleep.h │ │ ├── ngx_http_echo_subrequest.c │ │ ├── ngx_http_echo_subrequest.h │ │ ├── ngx_http_echo_timer.c │ │ ├── ngx_http_echo_timer.h │ │ ├── ngx_http_echo_util.c │ │ ├── ngx_http_echo_util.h │ │ ├── ngx_http_echo_var.c │ │ └── ngx_http_echo_var.h │ ├── t │ │ ├── abort-parent.t │ │ ├── blocking-sleep.t │ │ ├── echo-after-body.t │ │ ├── echo-before-body.t │ │ ├── echo-duplicate.t │ │ ├── echo-timer.t │ │ ├── echo.t │ │ ├── exec.t │ │ ├── filter-used.t │ │ ├── foreach-split.t │ │ ├── gzip.t │ │ ├── if.t │ │ ├── incr.t │ │ ├── location-async.t │ │ ├── location.t │ │ ├── mixed.t │ │ ├── request-body.t │ │ ├── request-info.t │ │ ├── sleep.t │ │ ├── status.t │ │ ├── subrequest-async.t │ │ ├── subrequest.t │ │ └── unused.t │ ├── util │ │ ├── build.sh │ │ └── wiki2pod.pl │ └── valgrind.suppress ├── encrypted-session-nginx-module-0.08 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── config │ ├── src │ │ ├── ddebug.h │ │ ├── ngx_http_encrypted_session_cipher.c │ │ ├── ngx_http_encrypted_session_cipher.h │ │ └── ngx_http_encrypted_session_module.c │ ├── t │ │ └── sanity.t │ ├── util │ │ └── build.sh │ └── valgrind.suppress ├── form-input-nginx-module-0.12 │ ├── .gitignore │ ├── config │ ├── src │ │ ├── ddebug.h │ │ └── ngx_http_form_input_module.c │ ├── t │ │ ├── base.t │ │ ├── bugs.t │ │ ├── eval.t │ │ ├── multi.t │ │ ├── put.t │ │ └── upload.t │ ├── util │ │ ├── build.sh │ │ ├── update-readme.sh │ │ └── wiki2pod.pl │ └── valgrind.suppress ├── headers-more-nginx-module-0.33 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── config │ ├── src │ │ ├── ddebug.h │ │ ├── ngx_http_headers_more_filter_module.c │ │ ├── ngx_http_headers_more_filter_module.h │ │ ├── ngx_http_headers_more_headers_in.c │ │ ├── ngx_http_headers_more_headers_in.h │ │ ├── ngx_http_headers_more_headers_out.c │ │ ├── ngx_http_headers_more_headers_out.h │ │ ├── ngx_http_headers_more_util.c │ │ └── ngx_http_headers_more_util.h │ ├── t │ │ ├── bug.t │ │ ├── builtin.t │ │ ├── eval.t │ │ ├── input-conn.t │ │ ├── input-cookie.t │ │ ├── input-ua.t │ │ ├── input.t │ │ ├── phase.t │ │ ├── sanity.t │ │ ├── subrequest.t │ │ ├── unused.t │ │ └── vars.t │ ├── util │ │ └── build.sh │ └── valgrind.suppress ├── iconv-nginx-module-0.14 │ ├── .gitignore │ ├── config │ ├── src │ │ ├── ddebug.h │ │ └── ngx_http_iconv_module.c │ ├── t │ │ ├── bugs.t │ │ └── sanity.t │ ├── util │ │ ├── build.sh │ │ ├── update-readme.sh │ │ └── wiki2pod.pl │ └── valgrind.suppress ├── install ├── lua-cjson-2.1.0.6 │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── LICENSE │ ├── Makefile │ ├── NEWS │ ├── THANKS │ ├── dtoa.c │ ├── dtoa_config.h │ ├── fpconv.c │ ├── fpconv.h │ ├── g_fmt.c │ ├── lua-cjson-2.1devel-1.rockspec │ ├── lua-cjson.spec │ ├── lua │ │ ├── cjson │ │ │ └── util.lua │ │ ├── json2lua.lua │ │ └── lua2json.lua │ ├── lua_cjson.c │ ├── manual.txt │ ├── performance.txt │ ├── rfc4627.txt │ ├── runtests.sh │ ├── strbuf.c │ ├── strbuf.h │ └── tests │ │ ├── README │ │ ├── TestLua.pm │ │ ├── agentzh.t │ │ ├── bench.lua │ │ ├── example1.json │ │ ├── example2.json │ │ ├── example3.json │ │ ├── example4.json │ │ ├── example5.json │ │ ├── genutf8.pl │ │ ├── numbers.json │ │ ├── octets-escaped.dat │ │ ├── rfc-example1.json │ │ ├── rfc-example2.json │ │ ├── test.lua │ │ └── types.json ├── lua-rds-parser-0.06 │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── src │ │ ├── ddebug.h │ │ ├── rds_parser.c │ │ ├── rds_parser.h │ │ └── resty_dbd_stream.h │ └── t │ │ ├── RdsParser.pm │ │ ├── error.t │ │ └── sanity.t ├── lua-redis-parser-0.13 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── Makefile │ ├── ddebug.h │ ├── redis-parser.c │ └── t │ │ ├── RedisParser.pm │ │ ├── pipeline.t │ │ ├── sanity.t │ │ └── version.t ├── lua-resty-core-0.1.15 │ ├── .gitattributes │ ├── .gitignore │ ├── .luacheckrc │ ├── .travis.yml │ ├── Makefile │ ├── dist.ini │ ├── lib │ │ ├── ngx │ │ │ ├── balancer.lua │ │ │ ├── base64.lua │ │ │ ├── errlog.lua │ │ │ ├── ocsp.lua │ │ │ ├── process.lua │ │ │ ├── re.lua │ │ │ ├── resp.lua │ │ │ ├── semaphore.lua │ │ │ ├── ssl.lua │ │ │ └── ssl │ │ │ │ └── session.lua │ │ └── resty │ │ │ ├── core.lua │ │ │ └── core │ │ │ ├── base.lua │ │ │ ├── base64.lua │ │ │ ├── ctx.lua │ │ │ ├── exit.lua │ │ │ ├── hash.lua │ │ │ ├── misc.lua │ │ │ ├── phase.lua │ │ │ ├── regex.lua │ │ │ ├── request.lua │ │ │ ├── response.lua │ │ │ ├── shdict.lua │ │ │ ├── time.lua │ │ │ ├── uri.lua │ │ │ ├── var.lua │ │ │ └── worker.lua │ ├── t │ │ ├── balancer-timeout.t │ │ ├── balancer.t │ │ ├── cert │ │ │ ├── chain │ │ │ │ ├── chain-bad0.pem │ │ │ │ ├── chain-bad2.pem │ │ │ │ ├── chain.der │ │ │ │ ├── chain.pem │ │ │ │ ├── root-ca.crt │ │ │ │ ├── test-com-bad.key.pem │ │ │ │ ├── test-com.key.der │ │ │ │ └── test-com.key.pem │ │ │ ├── ocsp │ │ │ │ ├── chain.pem │ │ │ │ ├── ocsp-req.der │ │ │ │ ├── ocsp-resp-no-certs.der │ │ │ │ ├── ocsp-resp-signed-by-orphaned-no-certs.der │ │ │ │ ├── ocsp-resp-signed-by-orphaned.der │ │ │ │ ├── ocsp-resp.der │ │ │ │ ├── revoked-chain.pem │ │ │ │ ├── revoked-ocsp-resp.der │ │ │ │ ├── test-com.crt │ │ │ │ └── wrong-issuer-order-chain.pem │ │ │ ├── test.crt │ │ │ ├── test.crt.der │ │ │ ├── test.key │ │ │ ├── test.key.der │ │ │ ├── test2.crt │ │ │ └── test2.key │ │ ├── count.t │ │ ├── ctx.t │ │ ├── decode-base64.t │ │ ├── encode-base64.t │ │ ├── errlog-raw-log.t │ │ ├── errlog.t │ │ ├── exit.t │ │ ├── master-pid-single-process.t │ │ ├── master-pid.t │ │ ├── md5-bin.t │ │ ├── md5.t │ │ ├── misc.t │ │ ├── ngx-resp.t │ │ ├── ocsp.t │ │ ├── phase.t │ │ ├── process-type-cache.t │ │ ├── process-type-hup.t │ │ ├── process-type-master.t │ │ ├── process-type-privileged-agent.t │ │ ├── re-base.t │ │ ├── re-find.t │ │ ├── re-gmatch.t │ │ ├── re-match.t │ │ ├── re-opt.t │ │ ├── re-split.t │ │ ├── re-sub.t │ │ ├── request.t │ │ ├── response.t │ │ ├── semaphore.t │ │ ├── sha1-bin.t │ │ ├── shared.t │ │ ├── shdict.t │ │ ├── ssl-session-fetch.t │ │ ├── ssl-session-store.t │ │ ├── ssl.t │ │ ├── status.t │ │ ├── stream │ │ │ ├── balancer-timeout.t │ │ │ ├── balancer.t │ │ │ └── misc.t │ │ ├── time.t │ │ ├── uri.t │ │ ├── var.t │ │ ├── worker-count-5.t │ │ └── worker.t │ └── valgrind.suppress ├── lua-resty-dns-0.21 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── Makefile │ ├── dist.ini │ ├── lib │ │ └── resty │ │ │ └── dns │ │ │ └── resolver.lua │ ├── t │ │ ├── TestDNS.pm │ │ ├── lib │ │ │ └── ljson.lua │ │ ├── mock.t │ │ └── sanity.t │ └── valgrind.suppress ├── lua-resty-limit-traffic-0.05 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── Makefile │ ├── dist.ini │ ├── lib │ │ └── resty │ │ │ └── limit │ │ │ ├── conn.lua │ │ │ ├── count.lua │ │ │ ├── req.lua │ │ │ └── traffic.lua │ ├── t │ │ ├── conn.t │ │ ├── count.t │ │ ├── req.t │ │ └── traffic.t │ └── valgrind.suppress ├── lua-resty-lock-0.07 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── Makefile │ ├── dist.ini │ ├── lib │ │ └── resty │ │ │ └── lock.lua │ ├── t │ │ └── sanity.t │ └── valgrind.suppress ├── lua-resty-lrucache-0.08 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── Makefile │ ├── dist.ini │ ├── lib │ │ └── resty │ │ │ ├── lrucache.lua │ │ │ └── lrucache │ │ │ └── pureffi.lua │ ├── t │ │ ├── flush-all.t │ │ ├── init-by-lua.t │ │ ├── mixed.t │ │ ├── pureffi │ │ │ ├── flush-all.t │ │ │ ├── init-by-lua.t │ │ │ ├── sanity.t │ │ │ └── should-store-false.t │ │ ├── sanity.t │ │ └── should-store-false.t │ └── valgrind.suppress ├── lua-resty-memcached-0.14 │ ├── .gitattributes │ ├── .gitignore │ ├── Makefile │ ├── lib │ │ └── resty │ │ │ └── memcached.lua │ ├── t │ │ ├── mock.t │ │ ├── sanity.t │ │ ├── tableset.t │ │ ├── touch.t │ │ └── version.t │ └── valgrind.suppress ├── lua-resty-mysql-0.20 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── Makefile │ ├── dist.ini │ ├── lib │ │ └── resty │ │ │ └── mysql.lua │ ├── t │ │ ├── big.t │ │ ├── bug.t │ │ ├── charset.t │ │ ├── compact_arrays.t │ │ ├── data │ │ │ ├── test.crt │ │ │ └── test.key │ │ ├── lib │ │ │ └── ljson.lua │ │ ├── sanity.t │ │ ├── ssl.t │ │ ├── version.t │ │ └── world.t │ └── valgrind.suppress ├── lua-resty-redis-0.26 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── Makefile │ ├── dist.ini │ ├── lib │ │ └── resty │ │ │ └── redis.lua │ ├── t │ │ ├── bugs.t │ │ ├── count.t │ │ ├── hmset.t │ │ ├── mock.t │ │ ├── pipeline.t │ │ ├── pubsub.t │ │ ├── sanity.t │ │ ├── transaction.t │ │ ├── user-cmds.t │ │ └── version.t │ └── valgrind.suppress ├── lua-resty-string-0.11 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── Makefile │ ├── dist.ini │ ├── lib │ │ └── resty │ │ │ ├── aes.lua │ │ │ ├── md5.lua │ │ │ ├── random.lua │ │ │ ├── sha.lua │ │ │ ├── sha1.lua │ │ │ ├── sha224.lua │ │ │ ├── sha256.lua │ │ │ ├── sha384.lua │ │ │ ├── sha512.lua │ │ │ └── string.lua │ ├── t │ │ ├── aes.t │ │ ├── atoi.t │ │ ├── md5.t │ │ ├── random.t │ │ ├── sha1.t │ │ ├── sha224.t │ │ ├── sha256.t │ │ ├── sha384.lua │ │ ├── sha512.t │ │ └── version.t │ └── valgrind.suppress ├── lua-resty-upload-0.10 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── Makefile │ ├── dist.ini │ ├── lib │ │ └── resty │ │ │ └── upload.lua │ ├── t │ │ ├── lib │ │ │ └── ljson.lua │ │ ├── sanity.t │ │ └── version.t │ └── valgrind.suppress ├── lua-resty-upstream-healthcheck-0.05 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── Makefile │ ├── dist.ini │ ├── lib │ │ └── resty │ │ │ └── upstream │ │ │ └── healthcheck.lua │ ├── t │ │ ├── lib │ │ │ └── ljson.lua │ │ └── sanity.t │ └── valgrind.suppress ├── lua-resty-websocket-0.06 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── Makefile │ ├── dist.ini │ ├── lib │ │ └── resty │ │ │ └── websocket │ │ │ ├── client.lua │ │ │ ├── protocol.lua │ │ │ └── server.lua │ ├── t │ │ ├── cert │ │ │ ├── test.crt │ │ │ └── test.key │ │ ├── count.t │ │ ├── cs.t │ │ └── sanity.t │ └── valgrind.suppress ├── memc-nginx-module-0.19 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── config │ ├── src │ │ ├── ddebug.h │ │ ├── memc_common.rl │ │ ├── memc_delete.rl │ │ ├── memc_flush_all.rl │ │ ├── memc_incr_decr.rl │ │ ├── memc_stats.rl │ │ ├── memc_storage.rl │ │ ├── memc_version.rl │ │ ├── ngx_http_memc_handler.c │ │ ├── ngx_http_memc_handler.h │ │ ├── ngx_http_memc_module.c │ │ ├── ngx_http_memc_module.h │ │ ├── ngx_http_memc_request.c │ │ ├── ngx_http_memc_request.h │ │ ├── ngx_http_memc_response.c │ │ ├── ngx_http_memc_response.h │ │ ├── ngx_http_memc_response.rl │ │ ├── ngx_http_memc_util.c │ │ └── ngx_http_memc_util.h │ ├── t │ │ ├── bugs.t │ │ ├── cmd.t │ │ ├── core-bugs.t │ │ ├── delete.t │ │ ├── errors.t │ │ ├── eval.t │ │ ├── exptime.t │ │ ├── flags.t │ │ ├── flush-all.t │ │ ├── if.t │ │ ├── incr-decr.t │ │ ├── keepalive.t │ │ ├── keepalive │ │ │ ├── incr-decr.t │ │ │ └── storage.t │ │ ├── stats.t │ │ ├── storage.t │ │ ├── upstream.t │ │ ├── used.t │ │ └── version.t │ ├── util │ │ ├── build.sh │ │ ├── fix-clang-warnings │ │ ├── update-readme.sh │ │ └── wiki2pod.pl │ └── valgrind.suppress ├── nginx-1.13.6 │ ├── README │ ├── auto │ │ ├── cc │ │ │ ├── acc │ │ │ ├── bcc │ │ │ ├── ccc │ │ │ ├── clang │ │ │ ├── clang.orig │ │ │ ├── conf │ │ │ ├── conf.orig │ │ │ ├── gcc │ │ │ ├── gcc.orig │ │ │ ├── icc │ │ │ ├── icc.orig │ │ │ ├── msvc │ │ │ ├── name │ │ │ ├── owc │ │ │ └── sunc │ │ ├── define │ │ ├── endianness │ │ ├── feature │ │ ├── have │ │ ├── have_headers │ │ ├── headers │ │ ├── include │ │ ├── init │ │ ├── install │ │ ├── lib │ │ │ ├── conf │ │ │ ├── geoip │ │ │ │ └── conf │ │ │ ├── google-perftools │ │ │ │ └── conf │ │ │ ├── libatomic │ │ │ │ ├── conf │ │ │ │ └── make │ │ │ ├── libgd │ │ │ │ └── conf │ │ │ ├── libxslt │ │ │ │ └── conf │ │ │ ├── make │ │ │ ├── openssl │ │ │ │ ├── conf │ │ │ │ ├── make │ │ │ │ ├── makefile.bcc │ │ │ │ └── makefile.msvc │ │ │ ├── pcre │ │ │ │ ├── conf │ │ │ │ ├── make │ │ │ │ ├── makefile.bcc │ │ │ │ ├── makefile.msvc │ │ │ │ └── makefile.owc │ │ │ ├── perl │ │ │ │ ├── conf │ │ │ │ └── make │ │ │ └── zlib │ │ │ │ ├── conf │ │ │ │ ├── make │ │ │ │ ├── makefile.bcc │ │ │ │ ├── makefile.msvc │ │ │ │ └── makefile.owc │ │ ├── make │ │ ├── module │ │ ├── modules │ │ ├── nohave │ │ ├── options │ │ ├── options.orig │ │ ├── os │ │ │ ├── conf │ │ │ ├── darwin │ │ │ ├── freebsd │ │ │ ├── linux │ │ │ ├── solaris │ │ │ └── win32 │ │ ├── sources │ │ ├── stubs │ │ ├── summary │ │ ├── threads │ │ ├── types │ │ │ ├── sizeof │ │ │ ├── typedef │ │ │ ├── uintptr_t │ │ │ └── value │ │ └── unix │ ├── conf │ │ ├── fastcgi.conf │ │ ├── fastcgi_params │ │ ├── koi-utf │ │ ├── koi-win │ │ ├── mime.types │ │ ├── nginx.conf │ │ ├── scgi_params │ │ ├── uwsgi_params │ │ └── win-utf │ ├── configure │ ├── contrib │ │ ├── README │ │ ├── geo2nginx.pl │ │ ├── unicode2nginx │ │ │ ├── koi-utf │ │ │ ├── unicode-to-nginx.pl │ │ │ └── win-utf │ │ └── vim │ │ │ ├── ftdetect │ │ │ └── nginx.vim │ │ │ ├── ftplugin │ │ │ └── nginx.vim │ │ │ ├── indent │ │ │ └── nginx.vim │ │ │ └── syntax │ │ │ └── nginx.vim │ ├── docs │ │ ├── GNUmakefile │ │ ├── dtd │ │ │ ├── change_log_conf.dtd │ │ │ └── changes.dtd │ │ ├── html │ │ │ ├── 50x.html │ │ │ └── index.html │ │ ├── man │ │ │ └── nginx.8 │ │ ├── text │ │ │ └── LICENSE │ │ ├── xml │ │ │ ├── change_log_conf.xml │ │ │ └── nginx │ │ │ │ └── changes.xml │ │ ├── xsls │ │ │ └── changes.xsls │ │ └── xslt │ │ │ └── changes.xslt │ ├── misc │ │ ├── GNUmakefile │ │ └── README │ └── src │ │ ├── core │ │ ├── nginx.c │ │ ├── nginx.c.orig │ │ ├── nginx.h │ │ ├── ngx_array.c │ │ ├── ngx_array.h │ │ ├── ngx_buf.c │ │ ├── ngx_buf.h │ │ ├── ngx_conf_file.c │ │ ├── ngx_conf_file.h │ │ ├── ngx_config.h │ │ ├── ngx_connection.c │ │ ├── ngx_connection.h │ │ ├── ngx_core.h │ │ ├── ngx_core_probe.h │ │ ├── ngx_cpuinfo.c │ │ ├── ngx_crc.h │ │ ├── ngx_crc32.c │ │ ├── ngx_crc32.h │ │ ├── ngx_crypt.c │ │ ├── ngx_crypt.h │ │ ├── ngx_cycle.c │ │ ├── ngx_cycle.h │ │ ├── ngx_cycle.h.orig │ │ ├── ngx_file.c │ │ ├── ngx_file.h │ │ ├── ngx_hash.c │ │ ├── ngx_hash.h │ │ ├── ngx_inet.c │ │ ├── ngx_inet.h │ │ ├── ngx_list.c │ │ ├── ngx_list.h │ │ ├── ngx_log.c │ │ ├── ngx_log.h │ │ ├── ngx_log.h.orig │ │ ├── ngx_md5.c │ │ ├── ngx_md5.h │ │ ├── ngx_module.c │ │ ├── ngx_module.h │ │ ├── ngx_murmurhash.c │ │ ├── ngx_murmurhash.h │ │ ├── ngx_open_file_cache.c │ │ ├── ngx_open_file_cache.h │ │ ├── ngx_output_chain.c │ │ ├── ngx_palloc.c │ │ ├── ngx_palloc.h │ │ ├── ngx_parse.c │ │ ├── ngx_parse.h │ │ ├── ngx_parse_time.c │ │ ├── ngx_parse_time.h │ │ ├── ngx_proxy_protocol.c │ │ ├── ngx_proxy_protocol.h │ │ ├── ngx_queue.c │ │ ├── ngx_queue.h │ │ ├── ngx_radix_tree.c │ │ ├── ngx_radix_tree.h │ │ ├── ngx_rbtree.c │ │ ├── ngx_rbtree.h │ │ ├── ngx_regex.c │ │ ├── ngx_regex.h │ │ ├── ngx_resolver.c │ │ ├── ngx_resolver.c.orig │ │ ├── ngx_resolver.h │ │ ├── ngx_rwlock.c │ │ ├── ngx_rwlock.h │ │ ├── ngx_sha1.c │ │ ├── ngx_sha1.h │ │ ├── ngx_shmtx.c │ │ ├── ngx_shmtx.h │ │ ├── ngx_slab.c │ │ ├── ngx_slab.h │ │ ├── ngx_spinlock.c │ │ ├── ngx_string.c │ │ ├── ngx_string.h │ │ ├── ngx_syslog.c │ │ ├── ngx_syslog.h │ │ ├── ngx_thread_pool.c │ │ ├── ngx_thread_pool.h │ │ ├── ngx_times.c │ │ └── ngx_times.h │ │ ├── dtrace │ │ ├── nginx.stp │ │ ├── nginx_provider.d │ │ └── stap-nginx │ │ ├── event │ │ ├── modules │ │ │ ├── ans_module.c │ │ │ ├── ngx_devpoll_module.c │ │ │ ├── ngx_epoll_module.c │ │ │ ├── ngx_eventport_module.c │ │ │ ├── ngx_iocp_module.c │ │ │ ├── ngx_iocp_module.h │ │ │ ├── ngx_kqueue_module.c │ │ │ ├── ngx_poll_module.c │ │ │ ├── ngx_select_module.c │ │ │ └── ngx_win32_select_module.c │ │ ├── ngx_event.c │ │ ├── ngx_event.h │ │ ├── ngx_event_accept.c │ │ ├── ngx_event_acceptex.c │ │ ├── ngx_event_connect.c │ │ ├── ngx_event_connect.h │ │ ├── ngx_event_connectex.c │ │ ├── ngx_event_openssl.c │ │ ├── ngx_event_openssl.c.orig │ │ ├── ngx_event_openssl.h │ │ ├── ngx_event_openssl_stapling.c │ │ ├── ngx_event_pipe.c │ │ ├── ngx_event_pipe.h │ │ ├── ngx_event_posted.c │ │ ├── ngx_event_posted.h │ │ ├── ngx_event_probe.h │ │ ├── ngx_event_timer.c │ │ └── ngx_event_timer.h │ │ ├── http │ │ ├── modules │ │ │ ├── ngx_http_access_module.c │ │ │ ├── ngx_http_addition_filter_module.c │ │ │ ├── ngx_http_auth_basic_module.c │ │ │ ├── ngx_http_auth_request_module.c │ │ │ ├── ngx_http_autoindex_module.c │ │ │ ├── ngx_http_browser_module.c │ │ │ ├── ngx_http_charset_filter_module.c │ │ │ ├── ngx_http_chunked_filter_module.c │ │ │ ├── ngx_http_dav_module.c │ │ │ ├── ngx_http_degradation_module.c │ │ │ ├── ngx_http_empty_gif_module.c │ │ │ ├── ngx_http_fastcgi_module.c │ │ │ ├── ngx_http_flv_module.c │ │ │ ├── ngx_http_geo_module.c │ │ │ ├── ngx_http_geoip_module.c │ │ │ ├── ngx_http_gunzip_filter_module.c │ │ │ ├── ngx_http_gzip_filter_module.c │ │ │ ├── ngx_http_gzip_static_module.c │ │ │ ├── ngx_http_headers_filter_module.c │ │ │ ├── ngx_http_image_filter_module.c │ │ │ ├── ngx_http_index_module.c │ │ │ ├── ngx_http_limit_conn_module.c │ │ │ ├── ngx_http_limit_req_module.c │ │ │ ├── ngx_http_log_module.c │ │ │ ├── ngx_http_map_module.c │ │ │ ├── ngx_http_memcached_module.c │ │ │ ├── ngx_http_mirror_module.c │ │ │ ├── ngx_http_mp4_module.c │ │ │ ├── ngx_http_not_modified_filter_module.c │ │ │ ├── ngx_http_proxy_module.c │ │ │ ├── ngx_http_proxy_module.c.orig │ │ │ ├── ngx_http_random_index_module.c │ │ │ ├── ngx_http_range_filter_module.c │ │ │ ├── ngx_http_realip_module.c │ │ │ ├── ngx_http_referer_module.c │ │ │ ├── ngx_http_rewrite_module.c │ │ │ ├── ngx_http_scgi_module.c │ │ │ ├── ngx_http_secure_link_module.c │ │ │ ├── ngx_http_slice_filter_module.c │ │ │ ├── ngx_http_split_clients_module.c │ │ │ ├── ngx_http_ssi_filter_module.c │ │ │ ├── ngx_http_ssi_filter_module.h │ │ │ ├── ngx_http_ssl_module.c │ │ │ ├── ngx_http_ssl_module.h │ │ │ ├── ngx_http_static_module.c │ │ │ ├── ngx_http_stub_status_module.c │ │ │ ├── ngx_http_sub_filter_module.c │ │ │ ├── ngx_http_try_files_module.c │ │ │ ├── ngx_http_upstream_hash_module.c │ │ │ ├── ngx_http_upstream_ip_hash_module.c │ │ │ ├── ngx_http_upstream_keepalive_module.c │ │ │ ├── ngx_http_upstream_least_conn_module.c │ │ │ ├── ngx_http_upstream_zone_module.c │ │ │ ├── ngx_http_userid_filter_module.c │ │ │ ├── ngx_http_uwsgi_module.c │ │ │ ├── ngx_http_xslt_filter_module.c │ │ │ └── perl │ │ │ │ ├── Makefile.PL │ │ │ │ ├── nginx.pm │ │ │ │ ├── nginx.xs │ │ │ │ ├── ngx_http_perl_module.c │ │ │ │ ├── ngx_http_perl_module.h │ │ │ │ └── typemap │ │ ├── ngx_http.c │ │ ├── ngx_http.h │ │ ├── ngx_http_cache.h │ │ ├── ngx_http_config.h │ │ ├── ngx_http_copy_filter_module.c │ │ ├── ngx_http_core_module.c │ │ ├── ngx_http_core_module.c.orig │ │ ├── ngx_http_core_module.h │ │ ├── ngx_http_file_cache.c │ │ ├── ngx_http_header_filter_module.c │ │ ├── ngx_http_parse.c │ │ ├── ngx_http_postpone_filter_module.c │ │ ├── ngx_http_probe.h │ │ ├── ngx_http_request.c │ │ ├── ngx_http_request.c.orig │ │ ├── ngx_http_request.h │ │ ├── ngx_http_request_body.c │ │ ├── ngx_http_script.c │ │ ├── ngx_http_script.h │ │ ├── ngx_http_special_response.c │ │ ├── ngx_http_special_response.c.orig │ │ ├── ngx_http_upstream.c │ │ ├── ngx_http_upstream.c.orig │ │ ├── ngx_http_upstream.h │ │ ├── ngx_http_upstream_round_robin.c │ │ ├── ngx_http_upstream_round_robin.h │ │ ├── ngx_http_variables.c │ │ ├── ngx_http_variables.h │ │ ├── ngx_http_write_filter_module.c │ │ └── v2 │ │ │ ├── ngx_http_v2.c │ │ │ ├── ngx_http_v2.h │ │ │ ├── ngx_http_v2_filter_module.c │ │ │ ├── ngx_http_v2_filter_module.c.orig │ │ │ ├── ngx_http_v2_huff_decode.c │ │ │ ├── ngx_http_v2_huff_encode.c │ │ │ ├── ngx_http_v2_module.c │ │ │ ├── ngx_http_v2_module.h │ │ │ └── ngx_http_v2_table.c │ │ ├── mail │ │ ├── ngx_mail.c │ │ ├── ngx_mail.h │ │ ├── ngx_mail_auth_http_module.c │ │ ├── ngx_mail_core_module.c │ │ ├── ngx_mail_handler.c │ │ ├── ngx_mail_imap_handler.c │ │ ├── ngx_mail_imap_module.c │ │ ├── ngx_mail_imap_module.h │ │ ├── ngx_mail_parse.c │ │ ├── ngx_mail_pop3_handler.c │ │ ├── ngx_mail_pop3_module.c │ │ ├── ngx_mail_pop3_module.h │ │ ├── ngx_mail_proxy_module.c │ │ ├── ngx_mail_smtp_handler.c │ │ ├── ngx_mail_smtp_module.c │ │ ├── ngx_mail_smtp_module.h │ │ ├── ngx_mail_ssl_module.c │ │ └── ngx_mail_ssl_module.h │ │ ├── misc │ │ ├── ngx_cpp_test_module.cpp │ │ └── ngx_google_perftools_module.c │ │ ├── os │ │ ├── unix │ │ │ ├── ngx_alloc.c │ │ │ ├── ngx_alloc.h │ │ │ ├── ngx_atomic.h │ │ │ ├── ngx_channel.c │ │ │ ├── ngx_channel.h │ │ │ ├── ngx_daemon.c │ │ │ ├── ngx_darwin.h │ │ │ ├── ngx_darwin_config.h │ │ │ ├── ngx_darwin_init.c │ │ │ ├── ngx_darwin_sendfile_chain.c │ │ │ ├── ngx_dlopen.c │ │ │ ├── ngx_dlopen.h │ │ │ ├── ngx_errno.c │ │ │ ├── ngx_errno.h │ │ │ ├── ngx_file_aio_read.c │ │ │ ├── ngx_files.c │ │ │ ├── ngx_files.h │ │ │ ├── ngx_freebsd.h │ │ │ ├── ngx_freebsd_config.h │ │ │ ├── ngx_freebsd_init.c │ │ │ ├── ngx_freebsd_sendfile_chain.c │ │ │ ├── ngx_gcc_atomic_amd64.h │ │ │ ├── ngx_gcc_atomic_ppc.h │ │ │ ├── ngx_gcc_atomic_sparc64.h │ │ │ ├── ngx_gcc_atomic_x86.h │ │ │ ├── ngx_linux.h │ │ │ ├── ngx_linux_aio_read.c │ │ │ ├── ngx_linux_config.h │ │ │ ├── ngx_linux_init.c │ │ │ ├── ngx_linux_sendfile_chain.c │ │ │ ├── ngx_os.h │ │ │ ├── ngx_posix_config.h │ │ │ ├── ngx_posix_init.c │ │ │ ├── ngx_process.c │ │ │ ├── ngx_process.h │ │ │ ├── ngx_process_cycle.c │ │ │ ├── ngx_process_cycle.c.orig │ │ │ ├── ngx_process_cycle.h │ │ │ ├── ngx_readv_chain.c │ │ │ ├── ngx_recv.c │ │ │ ├── ngx_send.c │ │ │ ├── ngx_setaffinity.c │ │ │ ├── ngx_setaffinity.h │ │ │ ├── ngx_setproctitle.c │ │ │ ├── ngx_setproctitle.h │ │ │ ├── ngx_shmem.c │ │ │ ├── ngx_shmem.h │ │ │ ├── ngx_socket.c │ │ │ ├── ngx_socket.h │ │ │ ├── ngx_solaris.h │ │ │ ├── ngx_solaris_config.h │ │ │ ├── ngx_solaris_init.c │ │ │ ├── ngx_solaris_sendfilev_chain.c │ │ │ ├── ngx_sunpro_amd64.il │ │ │ ├── ngx_sunpro_atomic_sparc64.h │ │ │ ├── ngx_sunpro_sparc64.il │ │ │ ├── ngx_sunpro_x86.il │ │ │ ├── ngx_thread.h │ │ │ ├── ngx_thread_cond.c │ │ │ ├── ngx_thread_id.c │ │ │ ├── ngx_thread_mutex.c │ │ │ ├── ngx_time.c │ │ │ ├── ngx_time.h │ │ │ ├── ngx_udp_recv.c │ │ │ ├── ngx_udp_send.c │ │ │ ├── ngx_udp_sendmsg_chain.c │ │ │ ├── ngx_user.c │ │ │ ├── ngx_user.h │ │ │ └── ngx_writev_chain.c │ │ └── win32 │ │ │ ├── nginx.ico │ │ │ ├── nginx.rc │ │ │ ├── nginx_icon16.xpm │ │ │ ├── nginx_icon32.xpm │ │ │ ├── nginx_icon48.xpm │ │ │ ├── ngx_alloc.c │ │ │ ├── ngx_alloc.h │ │ │ ├── ngx_atomic.h │ │ │ ├── ngx_dlopen.c │ │ │ ├── ngx_dlopen.h │ │ │ ├── ngx_errno.c │ │ │ ├── ngx_errno.h │ │ │ ├── ngx_event_log.c │ │ │ ├── ngx_files.c │ │ │ ├── ngx_files.h │ │ │ ├── ngx_os.h │ │ │ ├── ngx_process.c │ │ │ ├── ngx_process.h │ │ │ ├── ngx_process_cycle.c │ │ │ ├── ngx_process_cycle.h │ │ │ ├── ngx_service.c │ │ │ ├── ngx_shmem.c │ │ │ ├── ngx_shmem.h │ │ │ ├── ngx_socket.c │ │ │ ├── ngx_socket.h │ │ │ ├── ngx_stat.c │ │ │ ├── ngx_thread.c │ │ │ ├── ngx_thread.h │ │ │ ├── ngx_time.c │ │ │ ├── ngx_time.h │ │ │ ├── ngx_udp_wsarecv.c │ │ │ ├── ngx_user.c │ │ │ ├── ngx_user.h │ │ │ ├── ngx_win32_config.h │ │ │ ├── ngx_win32_init.c │ │ │ ├── ngx_wsarecv.c │ │ │ ├── ngx_wsarecv_chain.c │ │ │ ├── ngx_wsasend.c │ │ │ └── ngx_wsasend_chain.c │ │ └── stream │ │ ├── ngx_stream.c │ │ ├── ngx_stream.h │ │ ├── ngx_stream_access_module.c │ │ ├── ngx_stream_core_module.c │ │ ├── ngx_stream_geo_module.c │ │ ├── ngx_stream_geoip_module.c │ │ ├── ngx_stream_handler.c │ │ ├── ngx_stream_limit_conn_module.c │ │ ├── ngx_stream_log_module.c │ │ ├── ngx_stream_map_module.c │ │ ├── ngx_stream_proxy_module.c │ │ ├── ngx_stream_proxy_module.c.orig │ │ ├── ngx_stream_realip_module.c │ │ ├── ngx_stream_return_module.c │ │ ├── ngx_stream_script.c │ │ ├── ngx_stream_script.h │ │ ├── ngx_stream_split_clients_module.c │ │ ├── ngx_stream_ssl_module.c │ │ ├── ngx_stream_ssl_module.h │ │ ├── ngx_stream_ssl_preread_module.c │ │ ├── ngx_stream_upstream.c │ │ ├── ngx_stream_upstream.h │ │ ├── ngx_stream_upstream_hash_module.c │ │ ├── ngx_stream_upstream_least_conn_module.c │ │ ├── ngx_stream_upstream_round_robin.c │ │ ├── ngx_stream_upstream_round_robin.h │ │ ├── ngx_stream_upstream_zone_module.c │ │ ├── ngx_stream_variables.c │ │ ├── ngx_stream_variables.h │ │ └── ngx_stream_write_filter_module.c ├── nginx-no_pool.patch ├── ngx_coolkit-0.2rc3 │ ├── .gitignore │ ├── CHANGES │ ├── LICENSE │ ├── README │ ├── config │ ├── src │ │ ├── ngx_coolkit_handlers.c │ │ ├── ngx_coolkit_handlers.h │ │ ├── ngx_coolkit_module.c │ │ ├── ngx_coolkit_module.h │ │ ├── ngx_coolkit_variables.c │ │ └── ngx_coolkit_variables.h │ ├── t │ │ ├── location.t │ │ ├── override_method.t │ │ └── remote_passwd.t │ └── valgrind.suppress ├── ngx_devel_kit-0.3.0 │ ├── .gitignore │ ├── LICENSE │ ├── README_AUTO_LIB │ ├── TODO │ ├── auto │ │ ├── actions │ │ │ ├── array │ │ │ └── palloc │ │ ├── build │ │ ├── data │ │ │ ├── action_replacements │ │ │ ├── action_types │ │ │ ├── conf_args │ │ │ ├── conf_locs │ │ │ ├── conf_macros │ │ │ ├── contexts │ │ │ ├── header_files │ │ │ ├── headers │ │ │ ├── module_dependencies │ │ │ ├── modules_optional │ │ │ └── prefixes │ │ ├── src │ │ │ ├── array.h │ │ │ ├── conf_cmd_basic.h │ │ │ ├── conf_merge.h │ │ │ └── palloc.h │ │ └── text │ │ │ └── autogen │ ├── config │ ├── docs │ │ ├── core │ │ │ ├── action_macros │ │ │ └── conf_cmds │ │ ├── modules │ │ │ └── set_var │ │ ├── patches │ │ │ └── more_logging_info │ │ └── upstream │ │ │ └── list │ ├── examples │ │ ├── README │ │ └── http │ │ │ └── set_var │ │ │ ├── config │ │ │ └── ngx_http_set_var_examples_module.c │ ├── ngx_auto_lib_core │ ├── notes │ │ ├── CHANGES │ │ └── LICENSE │ ├── objs │ │ ├── ndk_array.h │ │ ├── ndk_conf_cmd_basic.h │ │ ├── ndk_conf_cmd_extra.h │ │ ├── ndk_conf_merge.h │ │ ├── ndk_config.c │ │ ├── ndk_config.h │ │ ├── ndk_includes.h │ │ └── ndk_palloc.h │ ├── patches │ │ ├── auto_config │ │ ├── expose_rewrite_functions │ │ └── rewrite_phase_handler │ └── src │ │ ├── hash │ │ ├── md5.h │ │ ├── murmurhash2.c │ │ └── sha.h │ │ ├── ndk.c │ │ ├── ndk.h │ │ ├── ndk_buf.c │ │ ├── ndk_buf.h │ │ ├── ndk_complex_path.c │ │ ├── ndk_complex_path.h │ │ ├── ndk_complex_value.c │ │ ├── ndk_complex_value.h │ │ ├── ndk_conf_file.c │ │ ├── ndk_conf_file.h │ │ ├── ndk_debug.c │ │ ├── ndk_debug.h │ │ ├── ndk_encoding.c │ │ ├── ndk_encoding.h │ │ ├── ndk_hash.c │ │ ├── ndk_hash.h │ │ ├── ndk_http.c │ │ ├── ndk_http.h │ │ ├── ndk_http_headers.h │ │ ├── ndk_log.c │ │ ├── ndk_log.h │ │ ├── ndk_parse.h │ │ ├── ndk_path.c │ │ ├── ndk_path.h │ │ ├── ndk_process.c │ │ ├── ndk_process.h │ │ ├── ndk_regex.c │ │ ├── ndk_regex.h │ │ ├── ndk_rewrite.c │ │ ├── ndk_rewrite.h │ │ ├── ndk_set_var.c │ │ ├── ndk_set_var.h │ │ ├── ndk_string.c │ │ ├── ndk_string.h │ │ ├── ndk_string_util.h │ │ ├── ndk_upstream_list.c │ │ ├── ndk_upstream_list.h │ │ ├── ndk_uri.c │ │ └── ndk_uri.h ├── ngx_lua-0.10.13 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── config │ ├── dtrace │ │ └── ngx_lua_provider.d │ ├── misc │ │ └── recv-until-pm │ │ │ ├── lib │ │ │ └── RecvUntil.pm │ │ │ └── t │ │ │ └── sanity.t │ ├── src │ │ ├── api │ │ │ └── ngx_http_lua_api.h │ │ ├── ddebug.h │ │ ├── ngx_http_lua_accessby.c │ │ ├── ngx_http_lua_accessby.h │ │ ├── ngx_http_lua_api.c │ │ ├── ngx_http_lua_args.c │ │ ├── ngx_http_lua_args.h │ │ ├── ngx_http_lua_balancer.c │ │ ├── ngx_http_lua_balancer.h │ │ ├── ngx_http_lua_bodyfilterby.c │ │ ├── ngx_http_lua_bodyfilterby.h │ │ ├── ngx_http_lua_cache.c │ │ ├── ngx_http_lua_cache.h │ │ ├── ngx_http_lua_capturefilter.c │ │ ├── ngx_http_lua_capturefilter.h │ │ ├── ngx_http_lua_clfactory.c │ │ ├── ngx_http_lua_clfactory.h │ │ ├── ngx_http_lua_common.h │ │ ├── ngx_http_lua_config.c │ │ ├── ngx_http_lua_config.h │ │ ├── ngx_http_lua_consts.c │ │ ├── ngx_http_lua_consts.h │ │ ├── ngx_http_lua_contentby.c │ │ ├── ngx_http_lua_contentby.h │ │ ├── ngx_http_lua_control.c │ │ ├── ngx_http_lua_control.h │ │ ├── ngx_http_lua_coroutine.c │ │ ├── ngx_http_lua_coroutine.h │ │ ├── ngx_http_lua_ctx.c │ │ ├── ngx_http_lua_ctx.h │ │ ├── ngx_http_lua_directive.c │ │ ├── ngx_http_lua_directive.h │ │ ├── ngx_http_lua_exception.c │ │ ├── ngx_http_lua_exception.h │ │ ├── ngx_http_lua_headerfilterby.c │ │ ├── ngx_http_lua_headerfilterby.h │ │ ├── ngx_http_lua_headers.c │ │ ├── ngx_http_lua_headers.h │ │ ├── ngx_http_lua_headers_in.c │ │ ├── ngx_http_lua_headers_in.h │ │ ├── ngx_http_lua_headers_out.c │ │ ├── ngx_http_lua_headers_out.h │ │ ├── ngx_http_lua_initby.c │ │ ├── ngx_http_lua_initby.h │ │ ├── ngx_http_lua_initworkerby.c │ │ ├── ngx_http_lua_initworkerby.h │ │ ├── ngx_http_lua_lex.c │ │ ├── ngx_http_lua_lex.h │ │ ├── ngx_http_lua_log.c │ │ ├── ngx_http_lua_log.h │ │ ├── ngx_http_lua_log_ringbuf.c │ │ ├── ngx_http_lua_log_ringbuf.h │ │ ├── ngx_http_lua_logby.c │ │ ├── ngx_http_lua_logby.h │ │ ├── ngx_http_lua_misc.c │ │ ├── ngx_http_lua_misc.h │ │ ├── ngx_http_lua_module.c │ │ ├── ngx_http_lua_ndk.c │ │ ├── ngx_http_lua_ndk.h │ │ ├── ngx_http_lua_output.c │ │ ├── ngx_http_lua_output.h │ │ ├── ngx_http_lua_pcrefix.c │ │ ├── ngx_http_lua_pcrefix.h │ │ ├── ngx_http_lua_phase.c │ │ ├── ngx_http_lua_phase.h │ │ ├── ngx_http_lua_probe.h │ │ ├── ngx_http_lua_regex.c │ │ ├── ngx_http_lua_regex.h │ │ ├── ngx_http_lua_req_body.c │ │ ├── ngx_http_lua_req_body.h │ │ ├── ngx_http_lua_req_method.c │ │ ├── ngx_http_lua_req_method.h │ │ ├── ngx_http_lua_rewriteby.c │ │ ├── ngx_http_lua_rewriteby.h │ │ ├── ngx_http_lua_script.c │ │ ├── ngx_http_lua_script.h │ │ ├── ngx_http_lua_semaphore.c │ │ ├── ngx_http_lua_semaphore.h │ │ ├── ngx_http_lua_setby.c │ │ ├── ngx_http_lua_setby.h │ │ ├── ngx_http_lua_shdict.c │ │ ├── ngx_http_lua_shdict.h │ │ ├── ngx_http_lua_sleep.c │ │ ├── ngx_http_lua_sleep.h │ │ ├── ngx_http_lua_socket_tcp.c │ │ ├── ngx_http_lua_socket_tcp.h │ │ ├── ngx_http_lua_socket_udp.c │ │ ├── ngx_http_lua_socket_udp.h │ │ ├── ngx_http_lua_ssl.c │ │ ├── ngx_http_lua_ssl.h │ │ ├── ngx_http_lua_ssl_certby.c │ │ ├── ngx_http_lua_ssl_certby.h │ │ ├── ngx_http_lua_ssl_ocsp.c │ │ ├── ngx_http_lua_ssl_session_fetchby.c │ │ ├── ngx_http_lua_ssl_session_fetchby.h │ │ ├── ngx_http_lua_ssl_session_storeby.c │ │ ├── ngx_http_lua_ssl_session_storeby.h │ │ ├── ngx_http_lua_string.c │ │ ├── ngx_http_lua_string.h │ │ ├── ngx_http_lua_subrequest.c │ │ ├── ngx_http_lua_subrequest.h │ │ ├── ngx_http_lua_time.c │ │ ├── ngx_http_lua_time.h │ │ ├── ngx_http_lua_timer.c │ │ ├── ngx_http_lua_timer.h │ │ ├── ngx_http_lua_uri.c │ │ ├── ngx_http_lua_uri.h │ │ ├── ngx_http_lua_uthread.c │ │ ├── ngx_http_lua_uthread.h │ │ ├── ngx_http_lua_util.c │ │ ├── ngx_http_lua_util.h │ │ ├── ngx_http_lua_variable.c │ │ ├── ngx_http_lua_variable.h │ │ ├── ngx_http_lua_worker.c │ │ └── ngx_http_lua_worker.h │ ├── t │ │ ├── .gitignore │ │ ├── 000--init.t │ │ ├── 000-sanity.t │ │ ├── 001-set.t │ │ ├── 002-content.t │ │ ├── 003-errors.t │ │ ├── 004-require.t │ │ ├── 005-exit.t │ │ ├── 006-escape.t │ │ ├── 007-md5.t │ │ ├── 008-today.t │ │ ├── 009-log.t │ │ ├── 010-request_body.t │ │ ├── 011-md5_bin.t │ │ ├── 012-now.t │ │ ├── 013-base64.t │ │ ├── 014-bugs.t │ │ ├── 015-status.t │ │ ├── 016-resp-header.t │ │ ├── 017-exec.t │ │ ├── 018-ndk.t │ │ ├── 019-const.t │ │ ├── 020-subrequest.t │ │ ├── 021-cookie-time.t │ │ ├── 022-redirect.t │ │ ├── 023-rewrite │ │ │ ├── client-abort.t │ │ │ ├── exec.t │ │ │ ├── exit.t │ │ │ ├── mixed.t │ │ │ ├── multi-capture.t │ │ │ ├── on-abort.t │ │ │ ├── redirect.t │ │ │ ├── req-body.t │ │ │ ├── req-socket.t │ │ │ ├── request_body.t │ │ │ ├── sanity.t │ │ │ ├── sleep.t │ │ │ ├── socket-keepalive.t │ │ │ ├── subrequest.t │ │ │ ├── tcp-socket-timeout.t │ │ │ ├── tcp-socket.t │ │ │ ├── unix-socket.t │ │ │ ├── uthread-exec.t │ │ │ ├── uthread-exit.t │ │ │ ├── uthread-redirect.t │ │ │ └── uthread-spawn.t │ │ ├── 024-access │ │ │ ├── auth.t │ │ │ ├── client-abort.t │ │ │ ├── exec.t │ │ │ ├── exit.t │ │ │ ├── mixed.t │ │ │ ├── multi-capture.t │ │ │ ├── on-abort.t │ │ │ ├── redirect.t │ │ │ ├── req-body.t │ │ │ ├── request_body.t │ │ │ ├── sanity.t │ │ │ ├── satisfy.t │ │ │ ├── sleep.t │ │ │ ├── subrequest.t │ │ │ ├── uthread-exec.t │ │ │ ├── uthread-exit.t │ │ │ ├── uthread-redirect.t │ │ │ └── uthread-spawn.t │ │ ├── 025-codecache.t │ │ ├── 026-mysql.t │ │ ├── 027-multi-capture.t │ │ ├── 028-req-header.t │ │ ├── 029-http-time.t │ │ ├── 030-uri-args.t │ │ ├── 031-post-args.t │ │ ├── 032-iolist.t │ │ ├── 033-ctx.t │ │ ├── 034-match.t │ │ ├── 035-gmatch.t │ │ ├── 036-sub.t │ │ ├── 037-gsub.t │ │ ├── 038-match-o.t │ │ ├── 039-sub-o.t │ │ ├── 040-gsub-o.t │ │ ├── 041-header-filter.t │ │ ├── 042-crc32.t │ │ ├── 043-shdict.t │ │ ├── 044-req-body.t │ │ ├── 045-ngx-var.t │ │ ├── 046-hmac.t │ │ ├── 047-match-jit.t │ │ ├── 048-match-dfa.t │ │ ├── 049-gmatch-jit.t │ │ ├── 050-gmatch-dfa.t │ │ ├── 051-sub-jit.t │ │ ├── 052-sub-dfa.t │ │ ├── 053-gsub-jit.t │ │ ├── 054-gsub-dfa.t │ │ ├── 055-subreq-vars.t │ │ ├── 056-flush.t │ │ ├── 057-flush-timeout.t │ │ ├── 058-tcp-socket.t │ │ ├── 059-unix-socket.t │ │ ├── 060-lua-memcached.t │ │ ├── 061-lua-redis.t │ │ ├── 062-count.t │ │ ├── 063-abort.t │ │ ├── 064-pcall.t │ │ ├── 065-tcp-socket-timeout.t │ │ ├── 066-socket-receiveuntil.t │ │ ├── 067-req-socket.t │ │ ├── 068-socket-keepalive.t │ │ ├── 069-null.t │ │ ├── 070-sha1.t │ │ ├── 071-idle-socket.t │ │ ├── 072-conditional-get.t │ │ ├── 073-backtrace.t │ │ ├── 074-prefix-var.t │ │ ├── 075-logby.t │ │ ├── 076-no-postpone.t │ │ ├── 077-sleep.t │ │ ├── 078-hup-vars.t │ │ ├── 079-unused-directives.t │ │ ├── 080-hup-shdict.t │ │ ├── 081-bytecode.t │ │ ├── 082-body-filter.t │ │ ├── 083-bad-sock-self.t │ │ ├── 084-inclusive-receiveuntil.t │ │ ├── 085-if.t │ │ ├── 086-init-by.t │ │ ├── 087-udp-socket.t │ │ ├── 088-req-method.t │ │ ├── 089-phase.t │ │ ├── 090-log-socket-errors.t │ │ ├── 091-coroutine.t │ │ ├── 092-eof.t │ │ ├── 093-uthread-spawn.t │ │ ├── 094-uthread-exit.t │ │ ├── 095-uthread-exec.t │ │ ├── 096-uthread-redirect.t │ │ ├── 097-uthread-rewrite.t │ │ ├── 098-uthread-wait.t │ │ ├── 099-c-api.t │ │ ├── 100-client-abort.t │ │ ├── 101-on-abort.t │ │ ├── 102-req-start-time.t │ │ ├── 103-req-http-ver.t │ │ ├── 104-req-raw-header.t │ │ ├── 105-pressure.t │ │ ├── 106-timer.t │ │ ├── 107-timer-errors.t │ │ ├── 108-timer-safe.t │ │ ├── 109-timer-hup.t │ │ ├── 110-etag.t │ │ ├── 111-req-header-ua.t │ │ ├── 112-req-header-conn.t │ │ ├── 113-req-header-cookie.t │ │ ├── 114-config.t │ │ ├── 115-quote-sql-str.t │ │ ├── 116-raw-req-socket.t │ │ ├── 117-raw-req-socket-timeout.t │ │ ├── 118-use-default-type.t │ │ ├── 119-config-prefix.t │ │ ├── 120-re-find.t │ │ ├── 121-version.t │ │ ├── 122-worker.t │ │ ├── 123-lua-path.t │ │ ├── 124-init-worker.t │ │ ├── 125-configure-args.t │ │ ├── 126-shdict-frag.t │ │ ├── 127-uthread-kill.t │ │ ├── 128-duplex-tcp-socket.t │ │ ├── 129-ssl-socket.t │ │ ├── 130-internal-api.t │ │ ├── 131-duplex-req-socket.t │ │ ├── 132-lua-blocks.t │ │ ├── 133-worker-count.t │ │ ├── 134-worker-count-5.t │ │ ├── 135-worker-id.t │ │ ├── 136-timer-counts.t │ │ ├── 137-req-misc.t │ │ ├── 138-balancer.t │ │ ├── 139-ssl-cert-by.t │ │ ├── 140-ssl-c-api.t │ │ ├── 141-luajit.t │ │ ├── 142-ssl-session-store.t │ │ ├── 143-ssl-session-fetch.t │ │ ├── 144-shdict-incr-init.t │ │ ├── 145-shdict-list.t │ │ ├── 146-malloc-trim.t │ │ ├── 147-tcp-socket-timeouts.t │ │ ├── 148-fake-shm-zone.t │ │ ├── 149-hup-fake-shm-zone.t │ │ ├── 150-fake-delayed-load.t │ │ ├── 151-initby-hup.t │ │ ├── 152-timer-every.t │ │ ├── 153-semaphore-hup.t │ │ ├── 154-semaphore.t │ │ ├── 155-tls13.t │ │ ├── StapThread.pm │ │ ├── cert │ │ │ ├── dst-ca.crt │ │ │ ├── equifax.crt │ │ │ ├── test.crl │ │ │ ├── test.crt │ │ │ ├── test.key │ │ │ ├── test2.crt │ │ │ ├── test2.key │ │ │ ├── test_ecdsa.crt │ │ │ └── test_ecdsa.key │ │ ├── data │ │ │ ├── fake-delayed-load-module │ │ │ │ ├── config │ │ │ │ └── ngx_http_lua_fake_delayed_load_module.c │ │ │ ├── fake-module │ │ │ │ ├── config │ │ │ │ └── ngx_http_fake_module.c │ │ │ └── fake-shm-module │ │ │ │ ├── config │ │ │ │ └── ngx_http_lua_fake_shm_module.c │ │ └── lib │ │ │ ├── CRC32.lua │ │ │ ├── Memcached.lua │ │ │ ├── Redis.lua │ │ │ └── ljson.lua │ ├── tapset │ │ └── ngx_lua.stp │ ├── util │ │ ├── build.sh │ │ ├── fix-comments │ │ ├── gen-lexer-c │ │ ├── ngx-links │ │ ├── retab │ │ ├── revim │ │ ├── run_test.sh │ │ └── update-readme.sh │ └── valgrind.suppress ├── ngx_lua_upstream-0.07 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── config │ ├── src │ │ ├── ddebug.h │ │ └── ngx_http_lua_upstream_module.c │ ├── t │ │ ├── count.t │ │ ├── lib │ │ │ └── ljson.lua │ │ ├── sanity.t │ │ └── up-down.t │ ├── util │ │ └── build.sh │ └── valgrind.suppress ├── ngx_postgres-1.0 │ ├── .gitignore │ ├── CHANGES │ ├── LICENSE │ ├── config │ ├── src │ │ ├── ngx_postgres_ddebug.h │ │ ├── ngx_postgres_escape.c │ │ ├── ngx_postgres_escape.h │ │ ├── ngx_postgres_handler.c │ │ ├── ngx_postgres_handler.h │ │ ├── ngx_postgres_keepalive.c │ │ ├── ngx_postgres_keepalive.h │ │ ├── ngx_postgres_module.c │ │ ├── ngx_postgres_module.h │ │ ├── ngx_postgres_output.c │ │ ├── ngx_postgres_output.h │ │ ├── ngx_postgres_processor.c │ │ ├── ngx_postgres_processor.h │ │ ├── ngx_postgres_rewrite.c │ │ ├── ngx_postgres_rewrite.h │ │ ├── ngx_postgres_upstream.c │ │ ├── ngx_postgres_upstream.h │ │ ├── ngx_postgres_util.c │ │ ├── ngx_postgres_util.h │ │ ├── ngx_postgres_variable.c │ │ ├── ngx_postgres_variable.h │ │ └── resty_dbd_stream.h │ ├── t │ │ ├── 000_init.t │ │ ├── auth.t │ │ ├── bigpipe.t │ │ ├── errors.t │ │ ├── escape.t │ │ ├── eval.t │ │ ├── form.t │ │ ├── methods.t │ │ ├── output.t │ │ ├── restful.t │ │ ├── restful_json.t │ │ ├── rewrites.t │ │ ├── sanity.t │ │ └── variables.t │ └── valgrind.suppress ├── ngx_stream_lua-0.0.5 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── config │ ├── src │ │ ├── api │ │ │ └── ngx_stream_lua_api.h │ │ ├── ddebug.h │ │ ├── ngx_stream_lua_api.c │ │ ├── ngx_stream_lua_args.c │ │ ├── ngx_stream_lua_args.h │ │ ├── ngx_stream_lua_balancer.c │ │ ├── ngx_stream_lua_balancer.h │ │ ├── ngx_stream_lua_cache.c │ │ ├── ngx_stream_lua_cache.h │ │ ├── ngx_stream_lua_clfactory.c │ │ ├── ngx_stream_lua_clfactory.h │ │ ├── ngx_stream_lua_common.h │ │ ├── ngx_stream_lua_config.c │ │ ├── ngx_stream_lua_config.h │ │ ├── ngx_stream_lua_consts.c │ │ ├── ngx_stream_lua_consts.h │ │ ├── ngx_stream_lua_contentby.c │ │ ├── ngx_stream_lua_contentby.h │ │ ├── ngx_stream_lua_control.c │ │ ├── ngx_stream_lua_control.h │ │ ├── ngx_stream_lua_coroutine.c │ │ ├── ngx_stream_lua_coroutine.h │ │ ├── ngx_stream_lua_ctx.c │ │ ├── ngx_stream_lua_ctx.h │ │ ├── ngx_stream_lua_directive.c │ │ ├── ngx_stream_lua_directive.h │ │ ├── ngx_stream_lua_exception.c │ │ ├── ngx_stream_lua_exception.h │ │ ├── ngx_stream_lua_initby.c │ │ ├── ngx_stream_lua_initby.h │ │ ├── ngx_stream_lua_initworkerby.c │ │ ├── ngx_stream_lua_initworkerby.h │ │ ├── ngx_stream_lua_lex.c │ │ ├── ngx_stream_lua_lex.h │ │ ├── ngx_stream_lua_log.c │ │ ├── ngx_stream_lua_log.h │ │ ├── ngx_stream_lua_logby.c │ │ ├── ngx_stream_lua_logby.h │ │ ├── ngx_stream_lua_misc.c │ │ ├── ngx_stream_lua_misc.h │ │ ├── ngx_stream_lua_module.c │ │ ├── ngx_stream_lua_output.c │ │ ├── ngx_stream_lua_output.h │ │ ├── ngx_stream_lua_pcrefix.c │ │ ├── ngx_stream_lua_pcrefix.h │ │ ├── ngx_stream_lua_phase.c │ │ ├── ngx_stream_lua_phase.h │ │ ├── ngx_stream_lua_prereadby.c │ │ ├── ngx_stream_lua_prereadby.h │ │ ├── ngx_stream_lua_probe.h │ │ ├── ngx_stream_lua_regex.c │ │ ├── ngx_stream_lua_regex.h │ │ ├── ngx_stream_lua_request.c │ │ ├── ngx_stream_lua_request.h │ │ ├── ngx_stream_lua_script.c │ │ ├── ngx_stream_lua_script.h │ │ ├── ngx_stream_lua_shdict.c │ │ ├── ngx_stream_lua_shdict.h │ │ ├── ngx_stream_lua_sleep.c │ │ ├── ngx_stream_lua_sleep.h │ │ ├── ngx_stream_lua_socket_tcp.c │ │ ├── ngx_stream_lua_socket_tcp.h │ │ ├── ngx_stream_lua_socket_udp.c │ │ ├── ngx_stream_lua_socket_udp.h │ │ ├── ngx_stream_lua_ssl.c │ │ ├── ngx_stream_lua_ssl.h │ │ ├── ngx_stream_lua_string.c │ │ ├── ngx_stream_lua_string.h │ │ ├── ngx_stream_lua_time.c │ │ ├── ngx_stream_lua_time.h │ │ ├── ngx_stream_lua_timer.c │ │ ├── ngx_stream_lua_timer.h │ │ ├── ngx_stream_lua_uthread.c │ │ ├── ngx_stream_lua_uthread.h │ │ ├── ngx_stream_lua_util.c │ │ ├── ngx_stream_lua_util.h │ │ ├── ngx_stream_lua_variable.c │ │ ├── ngx_stream_lua_variable.h │ │ ├── ngx_stream_lua_worker.c │ │ └── ngx_stream_lua_worker.h │ ├── t │ │ ├── 002-content.t │ │ ├── 003-errors.t │ │ ├── 004-require.t │ │ ├── 005-exit.t │ │ ├── 006-escape.t │ │ ├── 007-md5.t │ │ ├── 008-today.t │ │ ├── 009-log.t │ │ ├── 011-md5_bin.t │ │ ├── 012-now.t │ │ ├── 013-base64.t │ │ ├── 014-bugs.t │ │ ├── 019-const.t │ │ ├── 023-preread │ │ │ ├── client-abort.t │ │ │ ├── exit.t │ │ │ ├── req-socket.t │ │ │ ├── sanity.t │ │ │ ├── sleep.t │ │ │ ├── socket-keepalive.t │ │ │ ├── tcp-socket-timeout.t │ │ │ └── tcp-socket.t │ │ ├── 025-codecache.t │ │ ├── 030-uri-args.t │ │ ├── 032-iolist.t │ │ ├── 033-ctx.t │ │ ├── 034-match.t │ │ ├── 035-gmatch.t │ │ ├── 036-sub.t │ │ ├── 037-gsub.t │ │ ├── 038-match-o.t │ │ ├── 039-sub-o.t │ │ ├── 040-gsub-o.t │ │ ├── 042-crc32.t │ │ ├── 043-shdict.t │ │ ├── 045-ngx-var.t │ │ ├── 046-hmac.t │ │ ├── 047-match-jit.t │ │ ├── 048-match-dfa.t │ │ ├── 049-gmatch-jit.t │ │ ├── 050-gmatch-dfa.t │ │ ├── 051-sub-jit.t │ │ ├── 052-sub-dfa.t │ │ ├── 053-gsub-jit.t │ │ ├── 054-gsub-dfa.t │ │ ├── 056-flush.t │ │ ├── 057-flush-timeout.t │ │ ├── 058-tcp-socket.t │ │ ├── 059-unix-socket.t │ │ ├── 060-lua-memcached.t │ │ ├── 061-lua-redis.t │ │ ├── 062-count.t │ │ ├── 064-pcall.t │ │ ├── 065-tcp-socket-timeout.t │ │ ├── 066-socket-receiveuntil.t │ │ ├── 067-req-socket.t │ │ ├── 069-null.t │ │ ├── 070-sha1.t │ │ ├── 071-idle-socket.t │ │ ├── 073-backtrace.t │ │ ├── 074-prefix-var.t │ │ ├── 075-logby.t │ │ ├── 077-sleep.t │ │ ├── 080-hup-shdict.t │ │ ├── 081-bytecode.t │ │ ├── 083-bad-sock-self.t │ │ ├── 084-inclusive-receiveuntil.t │ │ ├── 086-init-by.t │ │ ├── 087-udp-socket.t │ │ ├── 089-phase.t │ │ ├── 090-log-socket-errors.t │ │ ├── 091-coroutine.t │ │ ├── 093-uthread-spawn.t │ │ ├── 094-uthread-exit.t │ │ ├── 098-uthread-wait.t │ │ ├── 099-c-api.t │ │ ├── 100-client-abort.t │ │ ├── 101-on-abort.t │ │ ├── 106-timer.t │ │ ├── 107-timer-errors.t │ │ ├── 108-timer-safe.t │ │ ├── 109-timer-hup.t │ │ ├── 114-config.t │ │ ├── 115-quote-sql-str.t │ │ ├── 116-raw-req-socket.t │ │ ├── 117-raw-req-socket-timeout.t │ │ ├── 119-config-prefix.t │ │ ├── 120-re-find.t │ │ ├── 121-version.t │ │ ├── 122-worker.t │ │ ├── 123-lua-path.t │ │ ├── 124-init-worker.t │ │ ├── 125-configure-args.t │ │ ├── 126-shdict-frag.t │ │ ├── 127-uthread-kill.t │ │ ├── 128-duplex-tcp-socket.t │ │ ├── 129-ssl-socket.t │ │ ├── 130-internal-api.t │ │ ├── 131-duplex-req-socket.t │ │ ├── 132-lua-blocks.t │ │ ├── 133-worker-count.t │ │ ├── 134-worker-count-5.t │ │ ├── 135-worker-id.t │ │ ├── 136-timer-counts.t │ │ ├── 138-balancer.t │ │ ├── 139-add-variable.t │ │ ├── 139-req-udp-socket.t │ │ ├── StapThread.pm │ │ ├── cert │ │ │ ├── dst-ca.crt │ │ │ ├── equifax.crt │ │ │ ├── startcom.crt │ │ │ ├── test.crl │ │ │ ├── test.crt │ │ │ └── test.key │ │ └── lib │ │ │ ├── CRC32.lua │ │ │ ├── Memcached.lua │ │ │ ├── Redis.lua │ │ │ └── ljson.lua │ ├── util │ │ ├── build.sh │ │ ├── fix-cosocket-tests.pl │ │ ├── fix-test-indent.pl │ │ └── port-tests.pl │ └── valgrind.suppress ├── opm-0.0.5 │ ├── .gitignore │ ├── Makefile │ ├── bin │ │ └── opm │ ├── init.sql │ ├── util │ │ └── opm-pkg-indexer.pl │ └── web │ │ ├── conf │ │ ├── get-limiting.conf │ │ ├── mime.types │ │ ├── nginx.conf │ │ └── root-ca.crt │ │ ├── css │ │ └── main.css │ │ ├── email.ini.example │ │ ├── images │ │ └── favicon.ico │ │ ├── lua │ │ ├── opmserver.lua │ │ ├── opmserver │ │ │ ├── email.lua │ │ │ └── templates.lua │ │ └── vendor │ │ │ ├── pgmoon.lua │ │ │ ├── pgmoon │ │ │ ├── arrays.lua │ │ │ ├── crypto.lua │ │ │ ├── init.lua │ │ │ ├── json.lua │ │ │ └── socket.lua │ │ │ └── resty │ │ │ ├── http.lua │ │ │ ├── http_headers.lua │ │ │ ├── ini.lua │ │ │ └── limit │ │ │ └── req.lua │ │ └── templates │ │ ├── footer.tt2 │ │ └── index.tt2 ├── pod │ ├── array-var-nginx-module-0.05 │ │ └── array-var-nginx-module-0.05.pod │ ├── drizzle-nginx-module-0.1.11 │ │ └── drizzle-nginx-module-0.1.11.pod │ ├── echo-nginx-module-0.61 │ │ └── echo-nginx-module-0.61.pod │ ├── encrypted-session-nginx-module-0.08 │ │ └── encrypted-session-nginx-module-0.08.pod │ ├── form-input-nginx-module-0.12 │ │ └── form-input-nginx-module-0.12.pod │ ├── headers-more-nginx-module-0.33 │ │ └── headers-more-nginx-module-0.33.pod │ ├── iconv-nginx-module-0.14 │ │ └── iconv-nginx-module-0.14.pod │ ├── lua-5.1.5 │ │ └── lua-5.1.5.pod │ ├── lua-cjson-2.1.0.6 │ │ └── lua-cjson-2.1.0.6.pod │ ├── lua-redis-parser-0.13 │ │ └── lua-redis-parser-0.13.pod │ ├── lua-resty-core-0.1.15 │ │ ├── .github.issue_template.pod │ │ ├── .github.pull_request_template.pod │ │ ├── lua-resty-core-0.1.15.pod │ │ ├── ngx.balancer.pod │ │ ├── ngx.base64.pod │ │ ├── ngx.errlog.pod │ │ ├── ngx.ocsp.pod │ │ ├── ngx.process.pod │ │ ├── ngx.re.pod │ │ ├── ngx.resp.pod │ │ ├── ngx.semaphore.pod │ │ ├── ngx.ssl.pod │ │ └── ngx.ssl.session.pod │ ├── lua-resty-dns-0.21 │ │ └── lua-resty-dns-0.21.pod │ ├── lua-resty-limit-traffic-0.05 │ │ ├── lua-resty-limit-traffic-0.05.pod │ │ ├── resty.limit.conn.pod │ │ ├── resty.limit.count.pod │ │ ├── resty.limit.req.pod │ │ └── resty.limit.traffic.pod │ ├── lua-resty-lock-0.07 │ │ └── lua-resty-lock-0.07.pod │ ├── lua-resty-lrucache-0.08 │ │ └── lua-resty-lrucache-0.08.pod │ ├── lua-resty-memcached-0.14 │ │ └── lua-resty-memcached-0.14.pod │ ├── lua-resty-mysql-0.20 │ │ ├── .github.issue_template.pod │ │ └── lua-resty-mysql-0.20.pod │ ├── lua-resty-redis-0.26 │ │ └── lua-resty-redis-0.26.pod │ ├── lua-resty-string-0.11 │ │ └── lua-resty-string-0.11.pod │ ├── lua-resty-upload-0.10 │ │ └── lua-resty-upload-0.10.pod │ ├── lua-resty-upstream-healthcheck-0.05 │ │ └── lua-resty-upstream-healthcheck-0.05.pod │ ├── lua-resty-websocket-0.06 │ │ └── lua-resty-websocket-0.06.pod │ ├── luajit-2.1 │ │ ├── changes.pod │ │ ├── contact.pod │ │ ├── ext_c_api.pod │ │ ├── ext_ffi.pod │ │ ├── ext_ffi_api.pod │ │ ├── ext_ffi_semantics.pod │ │ ├── ext_ffi_tutorial.pod │ │ ├── ext_jit.pod │ │ ├── ext_profiler.pod │ │ ├── extensions.pod │ │ ├── faq.pod │ │ ├── install.pod │ │ ├── luajit-2.1.pod │ │ ├── running.pod │ │ └── status.pod │ ├── memc-nginx-module-0.19 │ │ └── memc-nginx-module-0.19.pod │ ├── nginx │ │ ├── accept_failed.pod │ │ ├── beginners_guide.pod │ │ ├── chunked_encoding_from_backend.pod │ │ ├── configure.pod │ │ ├── configuring_https_servers.pod │ │ ├── contributing_changes.pod │ │ ├── control.pod │ │ ├── converting_rewrite_rules.pod │ │ ├── daemon_master_process_off.pod │ │ ├── debugging_log.pod │ │ ├── development_guide.pod │ │ ├── events.pod │ │ ├── example.pod │ │ ├── faq.pod │ │ ├── freebsd_tuning.pod │ │ ├── hash.pod │ │ ├── howto_build_on_win32.pod │ │ ├── install.pod │ │ ├── license_copyright.pod │ │ ├── load_balancing.pod │ │ ├── nginx.pod │ │ ├── nginx_dtrace_pid_provider.pod │ │ ├── ngx_core_module.pod │ │ ├── ngx_google_perftools_module.pod │ │ ├── ngx_http_access_module.pod │ │ ├── ngx_http_addition_module.pod │ │ ├── ngx_http_api_module_head.pod │ │ ├── ngx_http_auth_basic_module.pod │ │ ├── ngx_http_auth_jwt_module.pod │ │ ├── ngx_http_auth_request_module.pod │ │ ├── ngx_http_autoindex_module.pod │ │ ├── ngx_http_browser_module.pod │ │ ├── ngx_http_charset_module.pod │ │ ├── ngx_http_core_module.pod │ │ ├── ngx_http_dav_module.pod │ │ ├── ngx_http_empty_gif_module.pod │ │ ├── ngx_http_f4f_module.pod │ │ ├── ngx_http_fastcgi_module.pod │ │ ├── ngx_http_flv_module.pod │ │ ├── ngx_http_geo_module.pod │ │ ├── ngx_http_geoip_module.pod │ │ ├── ngx_http_grpc_module.pod │ │ ├── ngx_http_gunzip_module.pod │ │ ├── ngx_http_gzip_module.pod │ │ ├── ngx_http_gzip_static_module.pod │ │ ├── ngx_http_headers_module.pod │ │ ├── ngx_http_hls_module.pod │ │ ├── ngx_http_image_filter_module.pod │ │ ├── ngx_http_index_module.pod │ │ ├── ngx_http_js_module.pod │ │ ├── ngx_http_keyval_module.pod │ │ ├── ngx_http_limit_conn_module.pod │ │ ├── ngx_http_limit_req_module.pod │ │ ├── ngx_http_log_module.pod │ │ ├── ngx_http_map_module.pod │ │ ├── ngx_http_memcached_module.pod │ │ ├── ngx_http_mirror_module.pod │ │ ├── ngx_http_mp4_module.pod │ │ ├── ngx_http_perl_module.pod │ │ ├── ngx_http_proxy_module.pod │ │ ├── ngx_http_random_index_module.pod │ │ ├── ngx_http_realip_module.pod │ │ ├── ngx_http_referer_module.pod │ │ ├── ngx_http_rewrite_module.pod │ │ ├── ngx_http_scgi_module.pod │ │ ├── ngx_http_secure_link_module.pod │ │ ├── ngx_http_session_log_module.pod │ │ ├── ngx_http_slice_module.pod │ │ ├── ngx_http_spdy_module.pod │ │ ├── ngx_http_split_clients_module.pod │ │ ├── ngx_http_ssi_module.pod │ │ ├── ngx_http_ssl_module.pod │ │ ├── ngx_http_status_module.pod │ │ ├── ngx_http_stub_status_module.pod │ │ ├── ngx_http_sub_module.pod │ │ ├── ngx_http_upstream_conf_module.pod │ │ ├── ngx_http_upstream_hc_module.pod │ │ ├── ngx_http_upstream_module.pod │ │ ├── ngx_http_userid_module.pod │ │ ├── ngx_http_uwsgi_module.pod │ │ ├── ngx_http_v2_module.pod │ │ ├── ngx_http_xslt_module.pod │ │ ├── ngx_mail_auth_http_module.pod │ │ ├── ngx_mail_core_module.pod │ │ ├── ngx_mail_imap_module.pod │ │ ├── ngx_mail_pop3_module.pod │ │ ├── ngx_mail_proxy_module.pod │ │ ├── ngx_mail_smtp_module.pod │ │ ├── ngx_mail_ssl_module.pod │ │ ├── ngx_stream_access_module.pod │ │ ├── ngx_stream_core_module.pod │ │ ├── ngx_stream_geo_module.pod │ │ ├── ngx_stream_geoip_module.pod │ │ ├── ngx_stream_js_module.pod │ │ ├── ngx_stream_keyval_module.pod │ │ ├── ngx_stream_limit_conn_module.pod │ │ ├── ngx_stream_log_module.pod │ │ ├── ngx_stream_map_module.pod │ │ ├── ngx_stream_proxy_module.pod │ │ ├── ngx_stream_realip_module.pod │ │ ├── ngx_stream_return_module.pod │ │ ├── ngx_stream_split_clients_module.pod │ │ ├── ngx_stream_ssl_module.pod │ │ ├── ngx_stream_ssl_preread_module.pod │ │ ├── ngx_stream_upstream_hc_module.pod │ │ ├── ngx_stream_upstream_module.pod │ │ ├── ngx_stream_zone_sync_module.pod │ │ ├── njs_about.pod │ │ ├── njs_changes.pod │ │ ├── request_processing.pod │ │ ├── server_names.pod │ │ ├── stream_processing.pod │ │ ├── switches.pod │ │ ├── syntax.pod │ │ ├── sys_errlist.pod │ │ ├── syslog.pod │ │ ├── variables_in_config.pod │ │ ├── websocket.pod │ │ ├── welcome_nginx_facebook.pod │ │ └── windows.pod │ ├── ngx_devel_kit-0.3.0 │ │ └── ngx_devel_kit-0.3.0.pod │ ├── ngx_lua-0.10.13 │ │ ├── .github.issue_template.pod │ │ ├── .github.pull_request_template.pod │ │ └── ngx_lua-0.10.13.pod │ ├── ngx_lua_upstream-0.07 │ │ └── ngx_lua_upstream-0.07.pod │ ├── ngx_postgres-1.0 │ │ ├── ngx_postgres-1.0.pod │ │ └── todo.pod │ ├── ngx_stream_lua-0.0.5 │ │ ├── dev_notes.pod │ │ └── ngx_stream_lua-0.0.5.pod │ ├── opm-0.0.5 │ │ └── opm-0.0.5.pod │ ├── rds-csv-nginx-module-0.09 │ │ └── rds-csv-nginx-module-0.09.pod │ ├── rds-json-nginx-module-0.15 │ │ └── rds-json-nginx-module-0.15.pod │ ├── redis2-nginx-module-0.15 │ │ └── redis2-nginx-module-0.15.pod │ ├── resty-cli-0.21 │ │ └── resty-cli-0.21.pod │ ├── set-misc-nginx-module-0.32 │ │ └── set-misc-nginx-module-0.32.pod │ ├── srcache-nginx-module-0.31 │ │ └── srcache-nginx-module-0.31.pod │ └── xss-nginx-module-0.06 │ │ └── xss-nginx-module-0.06.pod ├── rds-csv-nginx-module-0.09 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── config │ ├── src │ │ ├── ddebug.h │ │ ├── ngx_http_rds.h │ │ ├── ngx_http_rds_csv_filter_module.c │ │ ├── ngx_http_rds_csv_filter_module.h │ │ ├── ngx_http_rds_csv_output.c │ │ ├── ngx_http_rds_csv_output.h │ │ ├── ngx_http_rds_csv_processor.c │ │ ├── ngx_http_rds_csv_processor.h │ │ ├── ngx_http_rds_csv_util.c │ │ ├── ngx_http_rds_csv_util.h │ │ ├── ngx_http_rds_utils.h │ │ └── resty_dbd_stream.h │ ├── t │ │ ├── 000_init.t │ │ ├── buf.t │ │ ├── escape.t │ │ ├── form.t │ │ ├── pg.t │ │ ├── sanity-stream.t │ │ ├── sanity.t │ │ └── unused.t │ ├── util │ │ └── build.sh │ └── valgrind.suppress ├── rds-json-nginx-module-0.15 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── config │ ├── src │ │ ├── ddebug.h │ │ ├── ngx_http_rds.h │ │ ├── ngx_http_rds_json_filter_module.c │ │ ├── ngx_http_rds_json_filter_module.h │ │ ├── ngx_http_rds_json_handler.c │ │ ├── ngx_http_rds_json_handler.h │ │ ├── ngx_http_rds_json_output.c │ │ ├── ngx_http_rds_json_output.h │ │ ├── ngx_http_rds_json_processor.c │ │ ├── ngx_http_rds_json_processor.h │ │ ├── ngx_http_rds_json_util.c │ │ ├── ngx_http_rds_json_util.h │ │ ├── ngx_http_rds_utils.h │ │ └── resty_dbd_stream.h │ ├── t │ │ ├── 000_init.t │ │ ├── buf.t │ │ ├── compact │ │ │ ├── buf.t │ │ │ ├── openresty.t │ │ │ ├── sanity-stream.t │ │ │ └── sanity.t │ │ ├── escape.t │ │ ├── form.t │ │ ├── openresty.t │ │ ├── pg.t │ │ ├── property.t │ │ ├── ret.t │ │ ├── sanity-stream.t │ │ ├── sanity.t │ │ └── unused.t │ ├── util │ │ ├── build.sh │ │ ├── update-readme.sh │ │ └── wiki2pod.pl │ └── valgrind.suppress ├── redis-nginx-module-0.3.7 │ ├── AUTHOR │ ├── CHANGES │ ├── LICENSE │ ├── README │ ├── config │ ├── ngx_http_redis_module.c │ ├── ngx_http_redis_module.c.orig │ └── t │ │ ├── Test │ │ └── Nginx.pm │ │ ├── redis.t │ │ └── redis_db_not_set.t ├── redis2-nginx-module-0.15 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── Changes │ ├── config │ ├── misc │ │ └── serv.erl │ ├── src │ │ ├── common.rl │ │ ├── ddebug.h │ │ ├── multi_bulk_reply.rl │ │ ├── ngx_http_redis2_handler.c │ │ ├── ngx_http_redis2_handler.h │ │ ├── ngx_http_redis2_module.c │ │ ├── ngx_http_redis2_module.h │ │ ├── ngx_http_redis2_reply.c │ │ ├── ngx_http_redis2_reply.h │ │ ├── ngx_http_redis2_reply.rl │ │ ├── ngx_http_redis2_util.c │ │ └── ngx_http_redis2_util.h │ ├── t │ │ ├── bugs.t │ │ ├── eval.t │ │ ├── if.t │ │ ├── pipeline.t │ │ └── sanity.t │ ├── util │ │ ├── build.sh │ │ └── fix-clang-warnings │ └── valgrind.suppress ├── resty-cli-0.21 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── bin │ │ ├── md2pod.pl │ │ ├── nginx-xml2pod │ │ ├── resty │ │ ├── restydoc │ │ └── restydoc-index │ ├── t │ │ ├── lib │ │ │ └── Test │ │ │ │ └── Resty.pm │ │ └── resty │ │ │ ├── options.t │ │ │ ├── sanity.t │ │ │ ├── signals.t │ │ │ └── user-args.t │ └── valgrind.suppress ├── resty.index ├── set-misc-nginx-module-0.32 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── config │ ├── src │ │ ├── ddebug.h │ │ ├── ngx_http_set_base32.c │ │ ├── ngx_http_set_base32.h │ │ ├── ngx_http_set_base64.c │ │ ├── ngx_http_set_base64.h │ │ ├── ngx_http_set_default_value.c │ │ ├── ngx_http_set_default_value.h │ │ ├── ngx_http_set_escape_uri.c │ │ ├── ngx_http_set_escape_uri.h │ │ ├── ngx_http_set_hash.c │ │ ├── ngx_http_set_hash.h │ │ ├── ngx_http_set_hashed_upstream.c │ │ ├── ngx_http_set_hashed_upstream.h │ │ ├── ngx_http_set_hex.c │ │ ├── ngx_http_set_hex.h │ │ ├── ngx_http_set_hmac.c │ │ ├── ngx_http_set_hmac.h │ │ ├── ngx_http_set_local_today.c │ │ ├── ngx_http_set_local_today.h │ │ ├── ngx_http_set_misc_module.c │ │ ├── ngx_http_set_misc_module.h │ │ ├── ngx_http_set_quote_json.c │ │ ├── ngx_http_set_quote_json.h │ │ ├── ngx_http_set_quote_sql.c │ │ ├── ngx_http_set_quote_sql.h │ │ ├── ngx_http_set_random.c │ │ ├── ngx_http_set_random.h │ │ ├── ngx_http_set_rotate.c │ │ ├── ngx_http_set_rotate.h │ │ ├── ngx_http_set_secure_random.c │ │ ├── ngx_http_set_secure_random.h │ │ ├── ngx_http_set_unescape_uri.c │ │ └── ngx_http_set_unescape_uri.h │ ├── t │ │ ├── base32.t │ │ ├── base32_no_padding.t │ │ ├── base64.t │ │ ├── default-value.t │ │ ├── escape-uri.t │ │ ├── formatted-time.t │ │ ├── hash.t │ │ ├── hashed-upstream.t │ │ ├── hex.t │ │ ├── hmac.t │ │ ├── local-today.t │ │ ├── quote-json.t │ │ ├── quote-sql.t │ │ ├── rand.t │ │ ├── rotate.t │ │ ├── secure-random.t │ │ └── unescape-uri.t │ ├── util │ │ └── build.sh │ └── valgrind.suppress ├── srcache-nginx-module-0.31 │ ├── .gitattributes │ ├── .gitignore │ ├── Changes │ ├── config │ ├── src │ │ ├── ddebug.h │ │ ├── ngx_http_srcache_fetch.c │ │ ├── ngx_http_srcache_fetch.h │ │ ├── ngx_http_srcache_filter_module.c │ │ ├── ngx_http_srcache_filter_module.h │ │ ├── ngx_http_srcache_headers.c │ │ ├── ngx_http_srcache_headers.h │ │ ├── ngx_http_srcache_store.c │ │ ├── ngx_http_srcache_store.h │ │ ├── ngx_http_srcache_util.c │ │ ├── ngx_http_srcache_util.h │ │ ├── ngx_http_srcache_var.c │ │ └── ngx_http_srcache_var.h │ ├── t │ │ ├── 000_init.t │ │ ├── access.t │ │ ├── bugs.t │ │ ├── conditional-get.t │ │ ├── content-length.t │ │ ├── content-type.t │ │ ├── disk.t │ │ ├── drizzle-main.t │ │ ├── drizzle-sub.t │ │ ├── empty-resp.t │ │ ├── err-page.t │ │ ├── etag.t │ │ ├── eval.t │ │ ├── expire-var.t │ │ ├── expires.t │ │ ├── fetch-header.t │ │ ├── fetch-skip.t │ │ ├── gzip.t │ │ ├── header-buf-size.t │ │ ├── main-req.t │ │ ├── max-age.t │ │ ├── methods.t │ │ ├── no-cache.t │ │ ├── no-store.t │ │ ├── postgres-main.t │ │ ├── private.t │ │ ├── proxy.t │ │ ├── ranges.t │ │ ├── redis.t │ │ ├── req-cache-control.t │ │ ├── satisfy.t │ │ ├── static.t │ │ ├── status.t │ │ ├── store-hide-headers.t │ │ ├── store-max-size.t │ │ ├── store-pass-headers.t │ │ ├── store-skip.t │ │ ├── sub-req.t │ │ ├── timeout.t │ │ └── unused.t │ ├── util │ │ └── build.sh │ └── valgrind.suppress └── xss-nginx-module-0.06 │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── config │ ├── src │ ├── ddebug.h │ ├── ngx_http_xss_filter_module.c │ ├── ngx_http_xss_filter_module.h │ ├── ngx_http_xss_util.c │ ├── ngx_http_xss_util.h │ └── ngx_http_xss_util.rl │ ├── t │ ├── gzip.t │ ├── sanity.t │ └── unused.t │ ├── util │ ├── build.sh │ ├── fix-clang-warnings │ ├── update-readme.sh │ └── wiki2pod.pl │ └── valgrind.suppress ├── configure ├── patches ├── openssl-1.0.2h-sess_set_get_cb_yield.patch ├── openssl-1.1.0c-sess_set_get_cb_yield.patch └── openssl-1.1.0d-sess_set_get_cb_yield.patch └── util ├── build-win32.sh └── package-win32.sh /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /README-windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/README-windows.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/README.md -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/.gitignore -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/.travis.yml -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/COPYRIGHT -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/Makefile -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/README -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/doc/bluequad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/doc/bluequad.css -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/doc/changes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/doc/changes.html -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/doc/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/doc/contact.html -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/doc/ext_ffi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/doc/ext_ffi.html -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/doc/ext_jit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/doc/ext_jit.html -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/doc/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/doc/faq.html -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/doc/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/doc/install.html -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/doc/luajit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/doc/luajit.html -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/doc/running.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/doc/running.html -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/doc/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/doc/status.html -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/etc/luajit.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/etc/luajit.1 -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/etc/luajit.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/etc/luajit.pc -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/.gitignore -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/Makefile -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/Makefile.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/Makefile.dep -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/host/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/host/README -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/jit/.gitignore: -------------------------------------------------------------------------------- 1 | vmdef.lua 2 | -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/jit/bc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/jit/bc.lua -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/jit/dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/jit/dump.lua -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/jit/p.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/jit/p.lua -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/jit/v.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/jit/v.lua -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/jit/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/jit/zone.lua -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lauxlib.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lib_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lib_aux.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lib_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lib_base.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lib_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lib_bit.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lib_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lib_debug.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lib_ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lib_ffi.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lib_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lib_init.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lib_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lib_io.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lib_jit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lib_jit.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lib_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lib_math.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lib_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lib_os.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lib_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lib_string.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lib_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lib_table.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj.supp -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_alloc.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_alloc.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_api.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_arch.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_asm.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_asm.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_asm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_asm_arm.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_asm_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_asm_ppc.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_asm_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_asm_x86.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_bc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_bc.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_bc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_bc.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_bcdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_bcdump.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_bcread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_bcread.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_bcwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_bcwrite.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_buf.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_buf.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_carith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_carith.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_carith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_carith.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_ccall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_ccall.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_ccall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_ccall.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_cconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_cconv.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_cconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_cconv.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_cdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_cdata.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_cdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_cdata.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_char.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_char.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_clib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_clib.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_clib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_clib.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_cparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_cparse.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_cparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_cparse.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_crecord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_crecord.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_crecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_crecord.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_ctype.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_ctype.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_debug.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_debug.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_def.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_err.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_err.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_errmsg.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_ff.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_frame.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_func.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_func.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_gc.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_gc.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_gdbjit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_gdbjit.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_gdbjit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_gdbjit.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_ir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_ir.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_ir.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_ircall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_ircall.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_iropt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_iropt.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_jit.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_lex.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_lex.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_lib.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_lib.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_load.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_mcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_mcode.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_mcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_mcode.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_meta.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_meta.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_obj.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_obj.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_opt_dce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_opt_dce.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_opt_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_opt_mem.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_parse.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_parse.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_profile.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_profile.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_record.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_record.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_snap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_snap.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_snap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_snap.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_state.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_state.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_str.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_str.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_strfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_strfmt.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_strfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_strfmt.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_strscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_strscan.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_strscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_strscan.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_tab.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_tab.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_target.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_trace.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_trace.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_udata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_udata.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_udata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_udata.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_vm.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_vmevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_vmevent.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_vmevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_vmevent.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lj_vmmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lj_vmmath.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/ljamalg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/ljamalg.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lua.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lua.hpp -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/luaconf.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/luajit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/luajit.c -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/luajit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/luajit.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/lualib.h -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/ps4build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/ps4build.bat -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/vm_arm.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/vm_arm.dasc -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/vm_mips.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/vm_mips.dasc -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/vm_ppc.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/vm_ppc.dasc -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/vm_x64.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/vm_x64.dasc -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/vm_x86.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/vm_x86.dasc -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/x64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/x64/Makefile -------------------------------------------------------------------------------- /bundle/LuaJIT-2.1-20180420/src/xb1build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/LuaJIT-2.1-20180420/src/xb1build.bat -------------------------------------------------------------------------------- /bundle/array-var-nginx-module-0.05/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/array-var-nginx-module-0.05/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/array-var-nginx-module-0.05/config -------------------------------------------------------------------------------- /bundle/drizzle-nginx-module-0.1.11/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/drizzle-nginx-module-0.1.11/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/drizzle-nginx-module-0.1.11/Changes -------------------------------------------------------------------------------- /bundle/drizzle-nginx-module-0.1.11/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/drizzle-nginx-module-0.1.11/config -------------------------------------------------------------------------------- /bundle/drizzle-nginx-module-0.1.11/t/bugs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/drizzle-nginx-module-0.1.11/t/bugs.t -------------------------------------------------------------------------------- /bundle/echo-nginx-module-0.61/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/echo-nginx-module-0.61/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/echo-nginx-module-0.61/.gitignore -------------------------------------------------------------------------------- /bundle/echo-nginx-module-0.61/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/echo-nginx-module-0.61/.travis.yml -------------------------------------------------------------------------------- /bundle/echo-nginx-module-0.61/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/echo-nginx-module-0.61/LICENSE -------------------------------------------------------------------------------- /bundle/echo-nginx-module-0.61/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/echo-nginx-module-0.61/config -------------------------------------------------------------------------------- /bundle/echo-nginx-module-0.61/src/ddebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/echo-nginx-module-0.61/src/ddebug.h -------------------------------------------------------------------------------- /bundle/echo-nginx-module-0.61/t/echo.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/echo-nginx-module-0.61/t/echo.t -------------------------------------------------------------------------------- /bundle/echo-nginx-module-0.61/t/exec.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/echo-nginx-module-0.61/t/exec.t -------------------------------------------------------------------------------- /bundle/echo-nginx-module-0.61/t/gzip.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/echo-nginx-module-0.61/t/gzip.t -------------------------------------------------------------------------------- /bundle/echo-nginx-module-0.61/t/if.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/echo-nginx-module-0.61/t/if.t -------------------------------------------------------------------------------- /bundle/echo-nginx-module-0.61/t/incr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/echo-nginx-module-0.61/t/incr.t -------------------------------------------------------------------------------- /bundle/echo-nginx-module-0.61/t/location.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/echo-nginx-module-0.61/t/location.t -------------------------------------------------------------------------------- /bundle/echo-nginx-module-0.61/t/mixed.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/echo-nginx-module-0.61/t/mixed.t -------------------------------------------------------------------------------- /bundle/echo-nginx-module-0.61/t/sleep.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/echo-nginx-module-0.61/t/sleep.t -------------------------------------------------------------------------------- /bundle/echo-nginx-module-0.61/t/status.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/echo-nginx-module-0.61/t/status.t -------------------------------------------------------------------------------- /bundle/echo-nginx-module-0.61/t/unused.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/echo-nginx-module-0.61/t/unused.t -------------------------------------------------------------------------------- /bundle/echo-nginx-module-0.61/util/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/echo-nginx-module-0.61/util/build.sh -------------------------------------------------------------------------------- /bundle/encrypted-session-nginx-module-0.08/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/form-input-nginx-module-0.12/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/form-input-nginx-module-0.12/config -------------------------------------------------------------------------------- /bundle/form-input-nginx-module-0.12/t/put.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/form-input-nginx-module-0.12/t/put.t -------------------------------------------------------------------------------- /bundle/headers-more-nginx-module-0.33/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/iconv-nginx-module-0.14/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/iconv-nginx-module-0.14/.gitignore -------------------------------------------------------------------------------- /bundle/iconv-nginx-module-0.14/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/iconv-nginx-module-0.14/config -------------------------------------------------------------------------------- /bundle/iconv-nginx-module-0.14/src/ddebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/iconv-nginx-module-0.14/src/ddebug.h -------------------------------------------------------------------------------- /bundle/iconv-nginx-module-0.14/t/bugs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/iconv-nginx-module-0.14/t/bugs.t -------------------------------------------------------------------------------- /bundle/iconv-nginx-module-0.14/t/sanity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/iconv-nginx-module-0.14/t/sanity.t -------------------------------------------------------------------------------- /bundle/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/install -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/.travis.yml -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/CMakeLists.txt -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/LICENSE -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/Makefile -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/NEWS -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/THANKS -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/dtoa.c -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/dtoa_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/dtoa_config.h -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/fpconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/fpconv.c -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/fpconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/fpconv.h -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/g_fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/g_fmt.c -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/lua-cjson.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/lua-cjson.spec -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/lua/cjson/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/lua/cjson/util.lua -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/lua/json2lua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/lua/json2lua.lua -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/lua/lua2json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/lua/lua2json.lua -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/lua_cjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/lua_cjson.c -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/manual.txt -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/performance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/performance.txt -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/rfc4627.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/rfc4627.txt -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/runtests.sh -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/strbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/strbuf.c -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/strbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/strbuf.h -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/tests/README -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/tests/TestLua.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/tests/TestLua.pm -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/tests/agentzh.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/tests/agentzh.t -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/tests/bench.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/tests/bench.lua -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/tests/genutf8.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/tests/genutf8.pl -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/tests/numbers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/tests/numbers.json -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/tests/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-cjson-2.1.0.6/tests/test.lua -------------------------------------------------------------------------------- /bundle/lua-cjson-2.1.0.6/tests/types.json: -------------------------------------------------------------------------------- 1 | { "array": [ 10, true, null ] } 2 | -------------------------------------------------------------------------------- /bundle/lua-rds-parser-0.06/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-rds-parser-0.06/.gitignore -------------------------------------------------------------------------------- /bundle/lua-rds-parser-0.06/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-rds-parser-0.06/Makefile -------------------------------------------------------------------------------- /bundle/lua-rds-parser-0.06/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-rds-parser-0.06/README -------------------------------------------------------------------------------- /bundle/lua-rds-parser-0.06/src/ddebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-rds-parser-0.06/src/ddebug.h -------------------------------------------------------------------------------- /bundle/lua-rds-parser-0.06/src/rds_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-rds-parser-0.06/src/rds_parser.c -------------------------------------------------------------------------------- /bundle/lua-rds-parser-0.06/src/rds_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-rds-parser-0.06/src/rds_parser.h -------------------------------------------------------------------------------- /bundle/lua-rds-parser-0.06/t/RdsParser.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-rds-parser-0.06/t/RdsParser.pm -------------------------------------------------------------------------------- /bundle/lua-rds-parser-0.06/t/error.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-rds-parser-0.06/t/error.t -------------------------------------------------------------------------------- /bundle/lua-rds-parser-0.06/t/sanity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-rds-parser-0.06/t/sanity.t -------------------------------------------------------------------------------- /bundle/lua-redis-parser-0.13/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/lua-redis-parser-0.13/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-redis-parser-0.13/.gitignore -------------------------------------------------------------------------------- /bundle/lua-redis-parser-0.13/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-redis-parser-0.13/.travis.yml -------------------------------------------------------------------------------- /bundle/lua-redis-parser-0.13/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-redis-parser-0.13/Makefile -------------------------------------------------------------------------------- /bundle/lua-redis-parser-0.13/ddebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-redis-parser-0.13/ddebug.h -------------------------------------------------------------------------------- /bundle/lua-redis-parser-0.13/redis-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-redis-parser-0.13/redis-parser.c -------------------------------------------------------------------------------- /bundle/lua-redis-parser-0.13/t/pipeline.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-redis-parser-0.13/t/pipeline.t -------------------------------------------------------------------------------- /bundle/lua-redis-parser-0.13/t/sanity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-redis-parser-0.13/t/sanity.t -------------------------------------------------------------------------------- /bundle/lua-redis-parser-0.13/t/version.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-redis-parser-0.13/t/version.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/.gitignore -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/.luacheckrc -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/.travis.yml -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/Makefile -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/dist.ini -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/lib/ngx/re.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/lib/ngx/re.lua -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/balancer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/balancer.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/count.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/count.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/ctx.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/ctx.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/errlog.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/errlog.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/exit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/exit.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/master-pid.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/master-pid.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/md5-bin.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/md5-bin.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/md5.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/md5.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/misc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/misc.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/ngx-resp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/ngx-resp.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/ocsp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/ocsp.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/phase.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/phase.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/re-base.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/re-base.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/re-find.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/re-find.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/re-gmatch.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/re-gmatch.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/re-match.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/re-match.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/re-opt.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/re-opt.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/re-split.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/re-split.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/re-sub.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/re-sub.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/request.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/request.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/response.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/response.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/semaphore.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/semaphore.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/sha1-bin.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/sha1-bin.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/shared.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/shared.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/shdict.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/shdict.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/ssl.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/ssl.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/status.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/status.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/time.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/time.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/uri.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/uri.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/var.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/var.t -------------------------------------------------------------------------------- /bundle/lua-resty-core-0.1.15/t/worker.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-core-0.1.15/t/worker.t -------------------------------------------------------------------------------- /bundle/lua-resty-dns-0.21/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/lua-resty-dns-0.21/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-dns-0.21/.gitignore -------------------------------------------------------------------------------- /bundle/lua-resty-dns-0.21/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-dns-0.21/.travis.yml -------------------------------------------------------------------------------- /bundle/lua-resty-dns-0.21/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-dns-0.21/Makefile -------------------------------------------------------------------------------- /bundle/lua-resty-dns-0.21/dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-dns-0.21/dist.ini -------------------------------------------------------------------------------- /bundle/lua-resty-dns-0.21/t/TestDNS.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-dns-0.21/t/TestDNS.pm -------------------------------------------------------------------------------- /bundle/lua-resty-dns-0.21/t/lib/ljson.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-dns-0.21/t/lib/ljson.lua -------------------------------------------------------------------------------- /bundle/lua-resty-dns-0.21/t/mock.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-dns-0.21/t/mock.t -------------------------------------------------------------------------------- /bundle/lua-resty-dns-0.21/t/sanity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-dns-0.21/t/sanity.t -------------------------------------------------------------------------------- /bundle/lua-resty-dns-0.21/valgrind.suppress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-dns-0.21/valgrind.suppress -------------------------------------------------------------------------------- /bundle/lua-resty-limit-traffic-0.05/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/lua-resty-limit-traffic-0.05/t/req.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-limit-traffic-0.05/t/req.t -------------------------------------------------------------------------------- /bundle/lua-resty-lock-0.07/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/lua-resty-lock-0.07/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-lock-0.07/.gitignore -------------------------------------------------------------------------------- /bundle/lua-resty-lock-0.07/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-lock-0.07/.travis.yml -------------------------------------------------------------------------------- /bundle/lua-resty-lock-0.07/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-lock-0.07/Makefile -------------------------------------------------------------------------------- /bundle/lua-resty-lock-0.07/dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-lock-0.07/dist.ini -------------------------------------------------------------------------------- /bundle/lua-resty-lock-0.07/t/sanity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-lock-0.07/t/sanity.t -------------------------------------------------------------------------------- /bundle/lua-resty-lrucache-0.08/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/lua-resty-lrucache-0.08/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-lrucache-0.08/.gitignore -------------------------------------------------------------------------------- /bundle/lua-resty-lrucache-0.08/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-lrucache-0.08/.travis.yml -------------------------------------------------------------------------------- /bundle/lua-resty-lrucache-0.08/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-lrucache-0.08/Makefile -------------------------------------------------------------------------------- /bundle/lua-resty-lrucache-0.08/dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-lrucache-0.08/dist.ini -------------------------------------------------------------------------------- /bundle/lua-resty-lrucache-0.08/t/mixed.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-lrucache-0.08/t/mixed.t -------------------------------------------------------------------------------- /bundle/lua-resty-lrucache-0.08/t/sanity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-lrucache-0.08/t/sanity.t -------------------------------------------------------------------------------- /bundle/lua-resty-memcached-0.14/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/lua-resty-memcached-0.14/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-memcached-0.14/.gitignore -------------------------------------------------------------------------------- /bundle/lua-resty-memcached-0.14/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-memcached-0.14/Makefile -------------------------------------------------------------------------------- /bundle/lua-resty-memcached-0.14/t/mock.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-memcached-0.14/t/mock.t -------------------------------------------------------------------------------- /bundle/lua-resty-memcached-0.14/t/sanity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-memcached-0.14/t/sanity.t -------------------------------------------------------------------------------- /bundle/lua-resty-memcached-0.14/t/touch.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-memcached-0.14/t/touch.t -------------------------------------------------------------------------------- /bundle/lua-resty-memcached-0.14/t/version.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-memcached-0.14/t/version.t -------------------------------------------------------------------------------- /bundle/lua-resty-mysql-0.20/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/lua-resty-mysql-0.20/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-mysql-0.20/.gitignore -------------------------------------------------------------------------------- /bundle/lua-resty-mysql-0.20/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-mysql-0.20/.travis.yml -------------------------------------------------------------------------------- /bundle/lua-resty-mysql-0.20/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-mysql-0.20/Makefile -------------------------------------------------------------------------------- /bundle/lua-resty-mysql-0.20/dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-mysql-0.20/dist.ini -------------------------------------------------------------------------------- /bundle/lua-resty-mysql-0.20/t/big.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-mysql-0.20/t/big.t -------------------------------------------------------------------------------- /bundle/lua-resty-mysql-0.20/t/bug.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-mysql-0.20/t/bug.t -------------------------------------------------------------------------------- /bundle/lua-resty-mysql-0.20/t/charset.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-mysql-0.20/t/charset.t -------------------------------------------------------------------------------- /bundle/lua-resty-mysql-0.20/t/data/test.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-mysql-0.20/t/data/test.crt -------------------------------------------------------------------------------- /bundle/lua-resty-mysql-0.20/t/data/test.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-mysql-0.20/t/data/test.key -------------------------------------------------------------------------------- /bundle/lua-resty-mysql-0.20/t/lib/ljson.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-mysql-0.20/t/lib/ljson.lua -------------------------------------------------------------------------------- /bundle/lua-resty-mysql-0.20/t/sanity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-mysql-0.20/t/sanity.t -------------------------------------------------------------------------------- /bundle/lua-resty-mysql-0.20/t/ssl.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-mysql-0.20/t/ssl.t -------------------------------------------------------------------------------- /bundle/lua-resty-mysql-0.20/t/version.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-mysql-0.20/t/version.t -------------------------------------------------------------------------------- /bundle/lua-resty-mysql-0.20/t/world.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-mysql-0.20/t/world.t -------------------------------------------------------------------------------- /bundle/lua-resty-redis-0.26/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/lua-resty-redis-0.26/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-redis-0.26/.gitignore -------------------------------------------------------------------------------- /bundle/lua-resty-redis-0.26/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-redis-0.26/.travis.yml -------------------------------------------------------------------------------- /bundle/lua-resty-redis-0.26/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-redis-0.26/Makefile -------------------------------------------------------------------------------- /bundle/lua-resty-redis-0.26/dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-redis-0.26/dist.ini -------------------------------------------------------------------------------- /bundle/lua-resty-redis-0.26/t/bugs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-redis-0.26/t/bugs.t -------------------------------------------------------------------------------- /bundle/lua-resty-redis-0.26/t/count.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-redis-0.26/t/count.t -------------------------------------------------------------------------------- /bundle/lua-resty-redis-0.26/t/hmset.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-redis-0.26/t/hmset.t -------------------------------------------------------------------------------- /bundle/lua-resty-redis-0.26/t/mock.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-redis-0.26/t/mock.t -------------------------------------------------------------------------------- /bundle/lua-resty-redis-0.26/t/pipeline.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-redis-0.26/t/pipeline.t -------------------------------------------------------------------------------- /bundle/lua-resty-redis-0.26/t/pubsub.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-redis-0.26/t/pubsub.t -------------------------------------------------------------------------------- /bundle/lua-resty-redis-0.26/t/sanity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-redis-0.26/t/sanity.t -------------------------------------------------------------------------------- /bundle/lua-resty-redis-0.26/t/transaction.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-redis-0.26/t/transaction.t -------------------------------------------------------------------------------- /bundle/lua-resty-redis-0.26/t/user-cmds.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-redis-0.26/t/user-cmds.t -------------------------------------------------------------------------------- /bundle/lua-resty-redis-0.26/t/version.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-redis-0.26/t/version.t -------------------------------------------------------------------------------- /bundle/lua-resty-string-0.11/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/lua-resty-string-0.11/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.swo 3 | *~ 4 | go 5 | t/servroot/ 6 | reindex 7 | -------------------------------------------------------------------------------- /bundle/lua-resty-string-0.11/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-string-0.11/.travis.yml -------------------------------------------------------------------------------- /bundle/lua-resty-string-0.11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-string-0.11/Makefile -------------------------------------------------------------------------------- /bundle/lua-resty-string-0.11/dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-string-0.11/dist.ini -------------------------------------------------------------------------------- /bundle/lua-resty-string-0.11/t/aes.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-string-0.11/t/aes.t -------------------------------------------------------------------------------- /bundle/lua-resty-string-0.11/t/atoi.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-string-0.11/t/atoi.t -------------------------------------------------------------------------------- /bundle/lua-resty-string-0.11/t/md5.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-string-0.11/t/md5.t -------------------------------------------------------------------------------- /bundle/lua-resty-string-0.11/t/random.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-string-0.11/t/random.t -------------------------------------------------------------------------------- /bundle/lua-resty-string-0.11/t/sha1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-string-0.11/t/sha1.t -------------------------------------------------------------------------------- /bundle/lua-resty-string-0.11/t/sha224.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-string-0.11/t/sha224.t -------------------------------------------------------------------------------- /bundle/lua-resty-string-0.11/t/sha256.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-string-0.11/t/sha256.t -------------------------------------------------------------------------------- /bundle/lua-resty-string-0.11/t/sha384.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-string-0.11/t/sha384.lua -------------------------------------------------------------------------------- /bundle/lua-resty-string-0.11/t/sha512.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-string-0.11/t/sha512.t -------------------------------------------------------------------------------- /bundle/lua-resty-string-0.11/t/version.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-string-0.11/t/version.t -------------------------------------------------------------------------------- /bundle/lua-resty-upload-0.10/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/lua-resty-upload-0.10/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.swo 3 | *~ 4 | go 5 | t/servroot/ 6 | reindex 7 | test.html 8 | -------------------------------------------------------------------------------- /bundle/lua-resty-upload-0.10/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-upload-0.10/.travis.yml -------------------------------------------------------------------------------- /bundle/lua-resty-upload-0.10/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-upload-0.10/Makefile -------------------------------------------------------------------------------- /bundle/lua-resty-upload-0.10/dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-upload-0.10/dist.ini -------------------------------------------------------------------------------- /bundle/lua-resty-upload-0.10/t/sanity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-upload-0.10/t/sanity.t -------------------------------------------------------------------------------- /bundle/lua-resty-upload-0.10/t/version.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-upload-0.10/t/version.t -------------------------------------------------------------------------------- /bundle/lua-resty-upstream-healthcheck-0.05/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/lua-resty-websocket-0.06/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/lua-resty-websocket-0.06/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-websocket-0.06/.gitignore -------------------------------------------------------------------------------- /bundle/lua-resty-websocket-0.06/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-websocket-0.06/.travis.yml -------------------------------------------------------------------------------- /bundle/lua-resty-websocket-0.06/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-websocket-0.06/Makefile -------------------------------------------------------------------------------- /bundle/lua-resty-websocket-0.06/dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-websocket-0.06/dist.ini -------------------------------------------------------------------------------- /bundle/lua-resty-websocket-0.06/t/count.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-websocket-0.06/t/count.t -------------------------------------------------------------------------------- /bundle/lua-resty-websocket-0.06/t/cs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-websocket-0.06/t/cs.t -------------------------------------------------------------------------------- /bundle/lua-resty-websocket-0.06/t/sanity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/lua-resty-websocket-0.06/t/sanity.t -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/memc-nginx-module-0.19/.gitignore -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/memc-nginx-module-0.19/.travis.yml -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/memc-nginx-module-0.19/config -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/src/ddebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/memc-nginx-module-0.19/src/ddebug.h -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/t/bugs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/memc-nginx-module-0.19/t/bugs.t -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/t/cmd.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/memc-nginx-module-0.19/t/cmd.t -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/t/core-bugs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/memc-nginx-module-0.19/t/core-bugs.t -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/t/delete.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/memc-nginx-module-0.19/t/delete.t -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/t/errors.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/memc-nginx-module-0.19/t/errors.t -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/t/eval.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/memc-nginx-module-0.19/t/eval.t -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/t/exptime.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/memc-nginx-module-0.19/t/exptime.t -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/t/flags.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/memc-nginx-module-0.19/t/flags.t -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/t/flush-all.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/memc-nginx-module-0.19/t/flush-all.t -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/t/if.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/memc-nginx-module-0.19/t/if.t -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/t/incr-decr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/memc-nginx-module-0.19/t/incr-decr.t -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/t/keepalive.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/memc-nginx-module-0.19/t/keepalive.t -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/t/stats.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/memc-nginx-module-0.19/t/stats.t -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/t/storage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/memc-nginx-module-0.19/t/storage.t -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/t/upstream.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/memc-nginx-module-0.19/t/upstream.t -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/t/used.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/memc-nginx-module-0.19/t/used.t -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/t/version.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/memc-nginx-module-0.19/t/version.t -------------------------------------------------------------------------------- /bundle/memc-nginx-module-0.19/util/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/memc-nginx-module-0.19/util/build.sh -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/README -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/cc/acc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/cc/acc -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/cc/bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/cc/bcc -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/cc/ccc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/cc/ccc -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/cc/clang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/cc/clang -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/cc/clang.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/cc/clang.orig -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/cc/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/cc/conf -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/cc/conf.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/cc/conf.orig -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/cc/gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/cc/gcc -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/cc/gcc.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/cc/gcc.orig -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/cc/icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/cc/icc -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/cc/icc.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/cc/icc.orig -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/cc/msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/cc/msvc -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/cc/name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/cc/name -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/cc/owc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/cc/owc -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/cc/sunc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/cc/sunc -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/define -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/endianness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/endianness -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/feature -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/have: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/have -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/have_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/have_headers -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/headers -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/include -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/init -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/install -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/lib/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/lib/conf -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/lib/geoip/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/lib/geoip/conf -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/lib/libatomic/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/lib/libatomic/conf -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/lib/libatomic/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/lib/libatomic/make -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/lib/libgd/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/lib/libgd/conf -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/lib/libxslt/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/lib/libxslt/conf -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/lib/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/lib/make -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/lib/openssl/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/lib/openssl/conf -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/lib/openssl/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/lib/openssl/make -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/lib/pcre/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/lib/pcre/conf -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/lib/pcre/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/lib/pcre/make -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/lib/perl/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/lib/perl/conf -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/lib/perl/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/lib/perl/make -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/lib/zlib/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/lib/zlib/conf -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/lib/zlib/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/lib/zlib/make -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/make -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/module -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/modules -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/nohave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/nohave -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/options -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/options.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/options.orig -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/os/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/os/conf -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/os/darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/os/darwin -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/os/freebsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/os/freebsd -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/os/linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/os/linux -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/os/solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/os/solaris -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/os/win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/os/win32 -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/sources -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/stubs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/stubs -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/summary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/summary -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/threads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/threads -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/types/sizeof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/types/sizeof -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/types/typedef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/types/typedef -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/types/uintptr_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/types/uintptr_t -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/types/value: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/types/value -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/auto/unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/auto/unix -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/conf/fastcgi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/conf/fastcgi.conf -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/conf/fastcgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/conf/fastcgi_params -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/conf/koi-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/conf/koi-utf -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/conf/koi-win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/conf/koi-win -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/conf/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/conf/mime.types -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/conf/nginx.conf -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/conf/scgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/conf/scgi_params -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/conf/uwsgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/conf/uwsgi_params -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/conf/win-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/conf/win-utf -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/configure -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/contrib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/contrib/README -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/contrib/geo2nginx.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/contrib/geo2nginx.pl -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/contrib/vim/ftplugin/nginx.vim: -------------------------------------------------------------------------------- 1 | setlocal commentstring=#\ %s 2 | -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/docs/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/docs/GNUmakefile -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/docs/dtd/changes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/docs/dtd/changes.dtd -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/docs/html/50x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/docs/html/50x.html -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/docs/html/index.html -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/docs/man/nginx.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/docs/man/nginx.8 -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/docs/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/docs/text/LICENSE -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/docs/xsls/changes.xsls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/docs/xsls/changes.xsls -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/docs/xslt/changes.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/docs/xslt/changes.xslt -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/misc/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/misc/GNUmakefile -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/misc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/misc/README -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/nginx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/nginx.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/nginx.c.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/nginx.c.orig -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/nginx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/nginx.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_array.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_array.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_buf.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_buf.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_config.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_core.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_cpuinfo.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_crc.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_crc32.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_crc32.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_crypt.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_crypt.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_cycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_cycle.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_cycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_cycle.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_file.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_file.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_hash.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_hash.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_inet.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_inet.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_list.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_list.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_log.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_log.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_log.h.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_log.h.orig -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_md5.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_md5.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_module.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_module.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_palloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_palloc.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_palloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_palloc.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_parse.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_parse.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_queue.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_queue.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_rbtree.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_rbtree.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_regex.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_regex.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_resolver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_resolver.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_resolver.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_rwlock.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_rwlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_rwlock.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_sha1.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_sha1.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_shmtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_shmtx.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_shmtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_shmtx.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_slab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_slab.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_slab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_slab.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_spinlock.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_string.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_times.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/core/ngx_times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/core/ngx_times.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/dtrace/nginx.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/dtrace/nginx.stp -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/http/modules/perl/typemap: -------------------------------------------------------------------------------- 1 | TYPEMAP 2 | 3 | nginx T_PTROBJ 4 | -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/http/ngx_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/http/ngx_http.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/http/ngx_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/http/ngx_http.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/mail/ngx_mail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/mail/ngx_mail.c -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/mail/ngx_mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/mail/ngx_mail.h -------------------------------------------------------------------------------- /bundle/nginx-1.13.6/src/os/unix/ngx_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-1.13.6/src/os/unix/ngx_os.h -------------------------------------------------------------------------------- /bundle/nginx-no_pool.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/nginx-no_pool.patch -------------------------------------------------------------------------------- /bundle/ngx_coolkit-0.2rc3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_coolkit-0.2rc3/.gitignore -------------------------------------------------------------------------------- /bundle/ngx_coolkit-0.2rc3/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_coolkit-0.2rc3/CHANGES -------------------------------------------------------------------------------- /bundle/ngx_coolkit-0.2rc3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_coolkit-0.2rc3/LICENSE -------------------------------------------------------------------------------- /bundle/ngx_coolkit-0.2rc3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_coolkit-0.2rc3/README -------------------------------------------------------------------------------- /bundle/ngx_coolkit-0.2rc3/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_coolkit-0.2rc3/config -------------------------------------------------------------------------------- /bundle/ngx_coolkit-0.2rc3/t/location.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_coolkit-0.2rc3/t/location.t -------------------------------------------------------------------------------- /bundle/ngx_devel_kit-0.3.0/.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | cscope.* 3 | *~ 4 | *.swp 5 | -------------------------------------------------------------------------------- /bundle/ngx_devel_kit-0.3.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_devel_kit-0.3.0/LICENSE -------------------------------------------------------------------------------- /bundle/ngx_devel_kit-0.3.0/TODO: -------------------------------------------------------------------------------- 1 | - for backward compatability, add the ndk_macros 2 | -------------------------------------------------------------------------------- /bundle/ngx_devel_kit-0.3.0/auto/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_devel_kit-0.3.0/auto/build -------------------------------------------------------------------------------- /bundle/ngx_devel_kit-0.3.0/auto/data/header_files: -------------------------------------------------------------------------------- 1 | array 2 | palloc 3 | 4 | -------------------------------------------------------------------------------- /bundle/ngx_devel_kit-0.3.0/auto/data/headers: -------------------------------------------------------------------------------- 1 | http_headers 2 | log 3 | parse 4 | string_util 5 | -------------------------------------------------------------------------------- /bundle/ngx_devel_kit-0.3.0/auto/data/prefixes: -------------------------------------------------------------------------------- 1 | ngx 2 | ndk 3 | -------------------------------------------------------------------------------- /bundle/ngx_devel_kit-0.3.0/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_devel_kit-0.3.0/config -------------------------------------------------------------------------------- /bundle/ngx_devel_kit-0.3.0/notes/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_devel_kit-0.3.0/notes/CHANGES -------------------------------------------------------------------------------- /bundle/ngx_devel_kit-0.3.0/notes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_devel_kit-0.3.0/notes/LICENSE -------------------------------------------------------------------------------- /bundle/ngx_devel_kit-0.3.0/src/ndk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_devel_kit-0.3.0/src/ndk.c -------------------------------------------------------------------------------- /bundle/ngx_devel_kit-0.3.0/src/ndk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_devel_kit-0.3.0/src/ndk.h -------------------------------------------------------------------------------- /bundle/ngx_devel_kit-0.3.0/src/ndk_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_devel_kit-0.3.0/src/ndk_buf.c -------------------------------------------------------------------------------- /bundle/ngx_devel_kit-0.3.0/src/ndk_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_devel_kit-0.3.0/src/ndk_buf.h -------------------------------------------------------------------------------- /bundle/ngx_devel_kit-0.3.0/src/ndk_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_devel_kit-0.3.0/src/ndk_log.c -------------------------------------------------------------------------------- /bundle/ngx_devel_kit-0.3.0/src/ndk_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_devel_kit-0.3.0/src/ndk_log.h -------------------------------------------------------------------------------- /bundle/ngx_devel_kit-0.3.0/src/ndk_uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_devel_kit-0.3.0/src/ndk_uri.c -------------------------------------------------------------------------------- /bundle/ngx_devel_kit-0.3.0/src/ndk_uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_devel_kit-0.3.0/src/ndk_uri.h -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/.gitignore -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/.travis.yml -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/config -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/src/ddebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/src/ddebug.h -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/.gitignore: -------------------------------------------------------------------------------- 1 | servroot 2 | 3 | -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/000--init.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/000--init.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/000-sanity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/000-sanity.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/001-set.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/001-set.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/002-content.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/002-content.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/003-errors.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/003-errors.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/004-require.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/004-require.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/005-exit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/005-exit.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/006-escape.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/006-escape.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/007-md5.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/007-md5.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/008-today.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/008-today.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/009-log.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/009-log.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/011-md5_bin.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/011-md5_bin.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/012-now.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/012-now.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/013-base64.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/013-base64.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/014-bugs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/014-bugs.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/015-status.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/015-status.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/017-exec.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/017-exec.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/018-ndk.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/018-ndk.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/019-const.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/019-const.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/022-redirect.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/022-redirect.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/025-codecache.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/025-codecache.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/026-mysql.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/026-mysql.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/029-http-time.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/029-http-time.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/030-uri-args.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/030-uri-args.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/031-post-args.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/031-post-args.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/032-iolist.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/032-iolist.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/033-ctx.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/033-ctx.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/034-match.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/034-match.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/035-gmatch.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/035-gmatch.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/036-sub.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/036-sub.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/037-gsub.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/037-gsub.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/038-match-o.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/038-match-o.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/039-sub-o.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/039-sub-o.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/040-gsub-o.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/040-gsub-o.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/042-crc32.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/042-crc32.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/043-shdict.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/043-shdict.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/044-req-body.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/044-req-body.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/045-ngx-var.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/045-ngx-var.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/046-hmac.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/046-hmac.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/047-match-jit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/047-match-jit.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/048-match-dfa.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/048-match-dfa.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/051-sub-jit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/051-sub-jit.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/052-sub-dfa.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/052-sub-dfa.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/053-gsub-jit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/053-gsub-jit.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/054-gsub-dfa.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/054-gsub-dfa.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/056-flush.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/056-flush.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/061-lua-redis.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/061-lua-redis.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/062-count.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/062-count.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/063-abort.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/063-abort.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/064-pcall.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/064-pcall.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/069-null.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/069-null.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/070-sha1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/070-sha1.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/073-backtrace.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/073-backtrace.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/075-logby.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/075-logby.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/077-sleep.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/077-sleep.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/078-hup-vars.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/078-hup-vars.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/081-bytecode.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/081-bytecode.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/085-if.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/085-if.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/086-init-by.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/086-init-by.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/089-phase.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/089-phase.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/091-coroutine.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/091-coroutine.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/092-eof.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/092-eof.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/099-c-api.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/099-c-api.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/101-on-abort.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/101-on-abort.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/105-pressure.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/105-pressure.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/106-timer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/106-timer.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/109-timer-hup.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/109-timer-hup.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/110-etag.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/110-etag.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/114-config.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/114-config.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/120-re-find.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/120-re-find.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/121-version.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/121-version.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/122-worker.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/122-worker.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/123-lua-path.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/123-lua-path.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/135-worker-id.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/135-worker-id.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/137-req-misc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/137-req-misc.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/138-balancer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/138-balancer.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/140-ssl-c-api.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/140-ssl-c-api.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/141-luajit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/141-luajit.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/154-semaphore.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/154-semaphore.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/155-tls13.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/155-tls13.t -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/StapThread.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/StapThread.pm -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/cert/dst-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/cert/dst-ca.crt -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/cert/test.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/cert/test.crl -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/cert/test.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/cert/test.crt -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/cert/test.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/cert/test.key -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/cert/test2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/cert/test2.crt -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/cert/test2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/cert/test2.key -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/lib/CRC32.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/lib/CRC32.lua -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/lib/Redis.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/lib/Redis.lua -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/t/lib/ljson.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/t/lib/ljson.lua -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/tapset/ngx_lua.stp: -------------------------------------------------------------------------------- 1 | function ngx_http_lua_ctx_context(r) 2 | { 3 | 4 | } 5 | 6 | -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/util/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/util/build.sh -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/util/fix-comments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/util/fix-comments -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/util/gen-lexer-c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/util/gen-lexer-c -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/util/ngx-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/util/ngx-links -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/util/retab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/util/retab -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/util/revim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/util/revim -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/util/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/util/run_test.sh -------------------------------------------------------------------------------- /bundle/ngx_lua-0.10.13/valgrind.suppress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua-0.10.13/valgrind.suppress -------------------------------------------------------------------------------- /bundle/ngx_lua_upstream-0.07/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/ngx_lua_upstream-0.07/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua_upstream-0.07/.gitignore -------------------------------------------------------------------------------- /bundle/ngx_lua_upstream-0.07/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua_upstream-0.07/.travis.yml -------------------------------------------------------------------------------- /bundle/ngx_lua_upstream-0.07/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua_upstream-0.07/config -------------------------------------------------------------------------------- /bundle/ngx_lua_upstream-0.07/t/count.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua_upstream-0.07/t/count.t -------------------------------------------------------------------------------- /bundle/ngx_lua_upstream-0.07/t/sanity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua_upstream-0.07/t/sanity.t -------------------------------------------------------------------------------- /bundle/ngx_lua_upstream-0.07/t/up-down.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_lua_upstream-0.07/t/up-down.t -------------------------------------------------------------------------------- /bundle/ngx_postgres-1.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_postgres-1.0/.gitignore -------------------------------------------------------------------------------- /bundle/ngx_postgres-1.0/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_postgres-1.0/CHANGES -------------------------------------------------------------------------------- /bundle/ngx_postgres-1.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_postgres-1.0/LICENSE -------------------------------------------------------------------------------- /bundle/ngx_postgres-1.0/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_postgres-1.0/config -------------------------------------------------------------------------------- /bundle/ngx_postgres-1.0/t/000_init.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_postgres-1.0/t/000_init.t -------------------------------------------------------------------------------- /bundle/ngx_postgres-1.0/t/auth.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_postgres-1.0/t/auth.t -------------------------------------------------------------------------------- /bundle/ngx_postgres-1.0/t/bigpipe.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_postgres-1.0/t/bigpipe.t -------------------------------------------------------------------------------- /bundle/ngx_postgres-1.0/t/errors.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_postgres-1.0/t/errors.t -------------------------------------------------------------------------------- /bundle/ngx_postgres-1.0/t/escape.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_postgres-1.0/t/escape.t -------------------------------------------------------------------------------- /bundle/ngx_postgres-1.0/t/eval.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_postgres-1.0/t/eval.t -------------------------------------------------------------------------------- /bundle/ngx_postgres-1.0/t/form.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_postgres-1.0/t/form.t -------------------------------------------------------------------------------- /bundle/ngx_postgres-1.0/t/methods.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_postgres-1.0/t/methods.t -------------------------------------------------------------------------------- /bundle/ngx_postgres-1.0/t/output.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_postgres-1.0/t/output.t -------------------------------------------------------------------------------- /bundle/ngx_postgres-1.0/t/restful.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_postgres-1.0/t/restful.t -------------------------------------------------------------------------------- /bundle/ngx_postgres-1.0/t/restful_json.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_postgres-1.0/t/restful_json.t -------------------------------------------------------------------------------- /bundle/ngx_postgres-1.0/t/rewrites.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_postgres-1.0/t/rewrites.t -------------------------------------------------------------------------------- /bundle/ngx_postgres-1.0/t/sanity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_postgres-1.0/t/sanity.t -------------------------------------------------------------------------------- /bundle/ngx_postgres-1.0/t/variables.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_postgres-1.0/t/variables.t -------------------------------------------------------------------------------- /bundle/ngx_stream_lua-0.0.5/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/ngx_stream_lua-0.0.5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_stream_lua-0.0.5/.gitignore -------------------------------------------------------------------------------- /bundle/ngx_stream_lua-0.0.5/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_stream_lua-0.0.5/.travis.yml -------------------------------------------------------------------------------- /bundle/ngx_stream_lua-0.0.5/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_stream_lua-0.0.5/config -------------------------------------------------------------------------------- /bundle/ngx_stream_lua-0.0.5/src/ddebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_stream_lua-0.0.5/src/ddebug.h -------------------------------------------------------------------------------- /bundle/ngx_stream_lua-0.0.5/t/005-exit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_stream_lua-0.0.5/t/005-exit.t -------------------------------------------------------------------------------- /bundle/ngx_stream_lua-0.0.5/t/007-md5.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_stream_lua-0.0.5/t/007-md5.t -------------------------------------------------------------------------------- /bundle/ngx_stream_lua-0.0.5/t/009-log.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_stream_lua-0.0.5/t/009-log.t -------------------------------------------------------------------------------- /bundle/ngx_stream_lua-0.0.5/t/012-now.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_stream_lua-0.0.5/t/012-now.t -------------------------------------------------------------------------------- /bundle/ngx_stream_lua-0.0.5/t/014-bugs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_stream_lua-0.0.5/t/014-bugs.t -------------------------------------------------------------------------------- /bundle/ngx_stream_lua-0.0.5/t/033-ctx.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_stream_lua-0.0.5/t/033-ctx.t -------------------------------------------------------------------------------- /bundle/ngx_stream_lua-0.0.5/t/036-sub.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_stream_lua-0.0.5/t/036-sub.t -------------------------------------------------------------------------------- /bundle/ngx_stream_lua-0.0.5/t/037-gsub.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_stream_lua-0.0.5/t/037-gsub.t -------------------------------------------------------------------------------- /bundle/ngx_stream_lua-0.0.5/t/046-hmac.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_stream_lua-0.0.5/t/046-hmac.t -------------------------------------------------------------------------------- /bundle/ngx_stream_lua-0.0.5/t/069-null.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_stream_lua-0.0.5/t/069-null.t -------------------------------------------------------------------------------- /bundle/ngx_stream_lua-0.0.5/t/070-sha1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/ngx_stream_lua-0.0.5/t/070-sha1.t -------------------------------------------------------------------------------- /bundle/opm-0.0.5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/opm-0.0.5/.gitignore -------------------------------------------------------------------------------- /bundle/opm-0.0.5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/opm-0.0.5/Makefile -------------------------------------------------------------------------------- /bundle/opm-0.0.5/bin/opm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/opm-0.0.5/bin/opm -------------------------------------------------------------------------------- /bundle/opm-0.0.5/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/opm-0.0.5/init.sql -------------------------------------------------------------------------------- /bundle/opm-0.0.5/util/opm-pkg-indexer.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/opm-0.0.5/util/opm-pkg-indexer.pl -------------------------------------------------------------------------------- /bundle/opm-0.0.5/web/conf/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/opm-0.0.5/web/conf/mime.types -------------------------------------------------------------------------------- /bundle/opm-0.0.5/web/conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/opm-0.0.5/web/conf/nginx.conf -------------------------------------------------------------------------------- /bundle/opm-0.0.5/web/conf/root-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/opm-0.0.5/web/conf/root-ca.crt -------------------------------------------------------------------------------- /bundle/opm-0.0.5/web/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/opm-0.0.5/web/css/main.css -------------------------------------------------------------------------------- /bundle/opm-0.0.5/web/email.ini.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/opm-0.0.5/web/email.ini.example -------------------------------------------------------------------------------- /bundle/opm-0.0.5/web/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/opm-0.0.5/web/images/favicon.ico -------------------------------------------------------------------------------- /bundle/opm-0.0.5/web/lua/opmserver.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/opm-0.0.5/web/lua/opmserver.lua -------------------------------------------------------------------------------- /bundle/opm-0.0.5/web/lua/vendor/pgmoon.lua: -------------------------------------------------------------------------------- 1 | return require("pgmoon.init") 2 | -------------------------------------------------------------------------------- /bundle/opm-0.0.5/web/templates/index.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/opm-0.0.5/web/templates/index.tt2 -------------------------------------------------------------------------------- /bundle/pod/lua-5.1.5/lua-5.1.5.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/lua-5.1.5/lua-5.1.5.pod -------------------------------------------------------------------------------- /bundle/pod/luajit-2.1/changes.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/luajit-2.1/changes.pod -------------------------------------------------------------------------------- /bundle/pod/luajit-2.1/contact.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/luajit-2.1/contact.pod -------------------------------------------------------------------------------- /bundle/pod/luajit-2.1/ext_c_api.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/luajit-2.1/ext_c_api.pod -------------------------------------------------------------------------------- /bundle/pod/luajit-2.1/ext_ffi.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/luajit-2.1/ext_ffi.pod -------------------------------------------------------------------------------- /bundle/pod/luajit-2.1/ext_ffi_api.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/luajit-2.1/ext_ffi_api.pod -------------------------------------------------------------------------------- /bundle/pod/luajit-2.1/ext_jit.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/luajit-2.1/ext_jit.pod -------------------------------------------------------------------------------- /bundle/pod/luajit-2.1/ext_profiler.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/luajit-2.1/ext_profiler.pod -------------------------------------------------------------------------------- /bundle/pod/luajit-2.1/extensions.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/luajit-2.1/extensions.pod -------------------------------------------------------------------------------- /bundle/pod/luajit-2.1/faq.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/luajit-2.1/faq.pod -------------------------------------------------------------------------------- /bundle/pod/luajit-2.1/install.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/luajit-2.1/install.pod -------------------------------------------------------------------------------- /bundle/pod/luajit-2.1/luajit-2.1.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/luajit-2.1/luajit-2.1.pod -------------------------------------------------------------------------------- /bundle/pod/luajit-2.1/running.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/luajit-2.1/running.pod -------------------------------------------------------------------------------- /bundle/pod/luajit-2.1/status.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/luajit-2.1/status.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/accept_failed.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/accept_failed.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/beginners_guide.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/beginners_guide.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/configure.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/configure.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/control.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/control.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/debugging_log.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/debugging_log.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/development_guide.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/development_guide.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/events.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/events.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/example.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/example.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/faq.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/faq.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/freebsd_tuning.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/freebsd_tuning.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/hash.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/hash.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/install.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/install.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/license_copyright.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/license_copyright.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/load_balancing.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/load_balancing.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/nginx.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/nginx.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/ngx_core_module.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/ngx_core_module.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/ngx_http_dav_module.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/ngx_http_dav_module.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/ngx_http_f4f_module.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/ngx_http_f4f_module.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/ngx_http_flv_module.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/ngx_http_flv_module.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/ngx_http_geo_module.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/ngx_http_geo_module.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/ngx_http_hls_module.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/ngx_http_hls_module.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/ngx_http_js_module.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/ngx_http_js_module.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/ngx_http_log_module.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/ngx_http_log_module.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/ngx_http_map_module.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/ngx_http_map_module.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/ngx_http_mp4_module.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/ngx_http_mp4_module.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/ngx_http_ssi_module.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/ngx_http_ssi_module.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/ngx_http_ssl_module.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/ngx_http_ssl_module.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/ngx_http_sub_module.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/ngx_http_sub_module.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/ngx_http_v2_module.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/ngx_http_v2_module.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/ngx_mail_ssl_module.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/ngx_mail_ssl_module.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/njs_about.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/njs_about.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/njs_changes.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/njs_changes.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/request_processing.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/request_processing.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/server_names.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/server_names.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/stream_processing.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/stream_processing.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/switches.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/switches.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/syntax.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/syntax.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/sys_errlist.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/sys_errlist.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/syslog.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/syslog.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/variables_in_config.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/variables_in_config.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/websocket.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/websocket.pod -------------------------------------------------------------------------------- /bundle/pod/nginx/windows.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/nginx/windows.pod -------------------------------------------------------------------------------- /bundle/pod/ngx_postgres-1.0/todo.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/ngx_postgres-1.0/todo.pod -------------------------------------------------------------------------------- /bundle/pod/opm-0.0.5/opm-0.0.5.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/pod/opm-0.0.5/opm-0.0.5.pod -------------------------------------------------------------------------------- /bundle/rds-csv-nginx-module-0.09/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/rds-csv-nginx-module-0.09/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/rds-csv-nginx-module-0.09/config -------------------------------------------------------------------------------- /bundle/rds-csv-nginx-module-0.09/t/buf.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/rds-csv-nginx-module-0.09/t/buf.t -------------------------------------------------------------------------------- /bundle/rds-csv-nginx-module-0.09/t/pg.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/rds-csv-nginx-module-0.09/t/pg.t -------------------------------------------------------------------------------- /bundle/rds-json-nginx-module-0.15/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/rds-json-nginx-module-0.15/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/rds-json-nginx-module-0.15/config -------------------------------------------------------------------------------- /bundle/rds-json-nginx-module-0.15/t/pg.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/rds-json-nginx-module-0.15/t/pg.t -------------------------------------------------------------------------------- /bundle/redis-nginx-module-0.3.7/AUTHOR: -------------------------------------------------------------------------------- 1 | Sergey A. Osokin 2 | -------------------------------------------------------------------------------- /bundle/redis-nginx-module-0.3.7/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/redis-nginx-module-0.3.7/CHANGES -------------------------------------------------------------------------------- /bundle/redis-nginx-module-0.3.7/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/redis-nginx-module-0.3.7/LICENSE -------------------------------------------------------------------------------- /bundle/redis-nginx-module-0.3.7/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/redis-nginx-module-0.3.7/README -------------------------------------------------------------------------------- /bundle/redis-nginx-module-0.3.7/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/redis-nginx-module-0.3.7/config -------------------------------------------------------------------------------- /bundle/redis2-nginx-module-0.15/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/redis2-nginx-module-0.15/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/redis2-nginx-module-0.15/Changes -------------------------------------------------------------------------------- /bundle/redis2-nginx-module-0.15/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/redis2-nginx-module-0.15/config -------------------------------------------------------------------------------- /bundle/redis2-nginx-module-0.15/t/bugs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/redis2-nginx-module-0.15/t/bugs.t -------------------------------------------------------------------------------- /bundle/redis2-nginx-module-0.15/t/eval.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/redis2-nginx-module-0.15/t/eval.t -------------------------------------------------------------------------------- /bundle/redis2-nginx-module-0.15/t/if.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/redis2-nginx-module-0.15/t/if.t -------------------------------------------------------------------------------- /bundle/resty-cli-0.21/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/resty-cli-0.21/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.swo 3 | *~ 4 | go 5 | reindex 6 | t/tmp/ 7 | -------------------------------------------------------------------------------- /bundle/resty-cli-0.21/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/resty-cli-0.21/.travis.yml -------------------------------------------------------------------------------- /bundle/resty-cli-0.21/bin/md2pod.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/resty-cli-0.21/bin/md2pod.pl -------------------------------------------------------------------------------- /bundle/resty-cli-0.21/bin/nginx-xml2pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/resty-cli-0.21/bin/nginx-xml2pod -------------------------------------------------------------------------------- /bundle/resty-cli-0.21/bin/resty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/resty-cli-0.21/bin/resty -------------------------------------------------------------------------------- /bundle/resty-cli-0.21/bin/restydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/resty-cli-0.21/bin/restydoc -------------------------------------------------------------------------------- /bundle/resty-cli-0.21/bin/restydoc-index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/resty-cli-0.21/bin/restydoc-index -------------------------------------------------------------------------------- /bundle/resty-cli-0.21/t/resty/options.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/resty-cli-0.21/t/resty/options.t -------------------------------------------------------------------------------- /bundle/resty-cli-0.21/t/resty/sanity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/resty-cli-0.21/t/resty/sanity.t -------------------------------------------------------------------------------- /bundle/resty-cli-0.21/t/resty/signals.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/resty-cli-0.21/t/resty/signals.t -------------------------------------------------------------------------------- /bundle/resty-cli-0.21/valgrind.suppress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/resty-cli-0.21/valgrind.suppress -------------------------------------------------------------------------------- /bundle/resty.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/resty.index -------------------------------------------------------------------------------- /bundle/set-misc-nginx-module-0.32/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/set-misc-nginx-module-0.32/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/set-misc-nginx-module-0.32/config -------------------------------------------------------------------------------- /bundle/srcache-nginx-module-0.31/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/srcache-nginx-module-0.31/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/srcache-nginx-module-0.31/Changes -------------------------------------------------------------------------------- /bundle/srcache-nginx-module-0.31/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/srcache-nginx-module-0.31/config -------------------------------------------------------------------------------- /bundle/xss-nginx-module-0.06/.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /bundle/xss-nginx-module-0.06/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/xss-nginx-module-0.06/.gitignore -------------------------------------------------------------------------------- /bundle/xss-nginx-module-0.06/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/xss-nginx-module-0.06/.travis.yml -------------------------------------------------------------------------------- /bundle/xss-nginx-module-0.06/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/xss-nginx-module-0.06/config -------------------------------------------------------------------------------- /bundle/xss-nginx-module-0.06/t/gzip.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/xss-nginx-module-0.06/t/gzip.t -------------------------------------------------------------------------------- /bundle/xss-nginx-module-0.06/t/sanity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/xss-nginx-module-0.06/t/sanity.t -------------------------------------------------------------------------------- /bundle/xss-nginx-module-0.06/t/unused.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/bundle/xss-nginx-module-0.06/t/unused.t -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/configure -------------------------------------------------------------------------------- /util/build-win32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/util/build-win32.sh -------------------------------------------------------------------------------- /util/package-win32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansyun/dpdk-openresty/HEAD/util/package-win32.sh --------------------------------------------------------------------------------