├── .gitignore ├── Debug ├── conf │ ├── fastcgi.conf │ ├── fastcgi_params │ ├── koi-utf │ ├── koi-win │ ├── mime.types │ ├── nginx.conf │ ├── scgi_params │ ├── uwsgi_params │ └── win-utf ├── html │ ├── 50x.html │ └── index.html ├── libeay32.dll ├── lua │ ├── aes.lua │ ├── logging.lua │ ├── mch │ │ ├── console.lua │ │ ├── controller.lua │ │ ├── debug.lua │ │ ├── front.lua │ │ ├── functional.lua │ │ ├── logger.lua │ │ ├── request.lua │ │ ├── response.lua │ │ ├── router.lua │ │ ├── util.lua │ │ └── vars.lua │ ├── mch_access.lua │ ├── mch_content.lua │ ├── md5.lua │ ├── memcached.lua │ ├── mysql.lua │ ├── random.lua │ ├── redis.lua │ ├── router.lua │ ├── session.lua │ ├── sha.lua │ ├── sha1.lua │ ├── sha224.lua │ ├── sha256.lua │ ├── sha384.lua │ ├── sha512.lua │ └── string.lua ├── rc.command.1.tlog ├── rc.read.1.tlog ├── rc.write.1.tlog ├── ssleay32.dll └── web │ ├── app │ ├── adminindex.lua │ ├── index.lua │ ├── login.lua │ └── test.lua │ ├── application.lua │ ├── index1.lua │ ├── routing.lua │ └── views │ ├── admin-404.html │ ├── admin-footer.html │ ├── admin-header.html │ ├── admin-index.html │ ├── admin-layout.html │ ├── index.html │ └── login.html ├── LuaJIT-2.0.3 ├── 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 │ ├── extensions.html │ ├── faq.html │ ├── img │ │ └── contact.png │ ├── install.html │ ├── luajit.html │ ├── running.html │ └── status.html ├── dynasm │ ├── dasm_arm.h │ ├── dasm_arm.lua │ ├── dasm_mips.h │ ├── dasm_mips.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 │ ├── Makefile │ ├── Makefile.dep │ ├── 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_mips.h │ ├── lj_asm_ppc.h │ ├── lj_asm_x86.h │ ├── lj_bc.c │ ├── lj_bc.h │ ├── lj_bcdef.h │ ├── lj_bcdump.h │ ├── lj_bcread.c │ ├── lj_bcwrite.c │ ├── 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_mips.h │ ├── lj_emit_ppc.h │ ├── lj_emit_x86.h │ ├── lj_err.c │ ├── lj_err.h │ ├── lj_errmsg.h │ ├── lj_ff.h │ ├── lj_ffdef.h │ ├── lj_ffrecord.c │ ├── lj_ffrecord.h │ ├── lj_folddef.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_libdef.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_recdef.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_strscan.c │ ├── lj_strscan.h │ ├── lj_tab.c │ ├── lj_tab.h │ ├── lj_target.h │ ├── lj_target_arm.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_vm.obj │ ├── lj_vmevent.c │ ├── lj_vmevent.h │ ├── lj_vmmath.c │ ├── ljamalg.c │ ├── lua.h │ ├── lua.hpp │ ├── lua51.dll │ ├── lua51.exp │ ├── lua51.lib │ ├── luaconf.h │ ├── luaiconv.c │ ├── luajit.c │ ├── luajit.exe │ ├── luajit.h │ ├── lualib.h │ ├── msvcbuild.bat │ ├── ps4build.bat │ ├── vm_arm.dasc │ ├── vm_mips.dasc │ ├── vm_ppc.dasc │ ├── vm_ppcspe.dasc │ ├── vm_x86.dasc │ └── xedkbuild.bat ├── LuaJIT-2.1 ├── 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_mips.h │ ├── dasm_mips.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 │ ├── Makefile │ ├── Makefile.dep │ ├── host │ ├── 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 │ ├── bc.lua │ ├── bcsave.lua │ ├── dis_arm.lua │ ├── dis_mips.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_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_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_strscan.c │ ├── lj_strscan.h │ ├── lj_tab.c │ ├── lj_tab.h │ ├── lj_target.h │ ├── lj_target_arm.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.c │ ├── lj_vm.h │ ├── lj_vmevent.c │ ├── lj_vmevent.h │ ├── lj_vmmath.c │ ├── ljamalg.c │ ├── lua.h │ ├── lua.hpp │ ├── luaconf.h │ ├── luaiconv.c │ ├── luajit.c │ ├── luajit.h │ ├── lualib.h │ ├── msvcbuild.bat │ ├── ps4build.bat │ ├── psvitabuild.bat │ ├── vm_arm.dasc │ ├── vm_mips.dasc │ ├── vm_ppc.dasc │ ├── vm_ppcspe.dasc │ ├── vm_x86.dasc │ └── xedkbuild.bat ├── README.md ├── conf ├── fastcgi.conf ├── fastcgi_params ├── koi-utf ├── koi-win ├── mime.types ├── nginx.conf ├── scgi_params ├── uwsgi_params └── win-utf ├── core ├── nginx.c ├── 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_cpuinfo.c ├── ngx_crc.h ├── ngx_crc32.c ├── ngx_crc32.h ├── ngx_crypt.c ├── ngx_crypt.h ├── ngx_cycle.c ├── ngx_cycle.h ├── 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_md5.c ├── ngx_md5.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_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.h ├── ngx_rwlock.c ├── ngx_rwlock.h ├── 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 ├── debug ├── charset.dll ├── iconv.dll └── lua │ └── template.lua ├── event ├── modules │ ├── ngx_aio_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_rtsig_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_busy_lock.c ├── ngx_event_busy_lock.h ├── ngx_event_connect.c ├── ngx_event_connect.h ├── ngx_event_connectex.c ├── ngx_event_mutex.c ├── ngx_event_openssl.c ├── 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_timer.c └── ngx_event_timer.h ├── html ├── 50x.html └── index.html ├── 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_hello_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_mp4_module.c │ ├── ngx_http_not_modified_filter_module.c │ ├── ngx_http_proxy_module.c │ ├── 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_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_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_busy_lock.c ├── ngx_http_busy_lock.h ├── ngx_http_cache.h ├── ngx_http_config.h ├── ngx_http_copy_filter_module.c ├── ngx_http_core_module.c ├── ngx_http_core_module.h ├── ngx_http_file_cache.c ├── ngx_http_header_filter_module.c ├── ngx_http_parse.c ├── ngx_http_parse_time.c ├── ngx_http_postpone_filter_module.c ├── ngx_http_request.c ├── ngx_http_request.h ├── ngx_http_request_body.c ├── ngx_http_script.c ├── ngx_http_script.h ├── ngx_http_spdy.c ├── ngx_http_spdy.h ├── ngx_http_spdy_filter_module.c ├── ngx_http_spdy_module.c ├── ngx_http_spdy_module.h ├── ngx_http_special_response.c ├── ngx_http_upstream.c ├── 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 ├── ipch └── nginx-777142dc │ └── nginx-bdb83670.ipch ├── lib ├── libeay32.dll ├── libeay32.lib ├── lj_vm.obj ├── ssleay32.dll └── ssleay32.lib ├── libiconv-1.9.1.bin.woe32 ├── README.libiconv ├── bin │ ├── charset.dll │ └── iconv.dll ├── include │ ├── iconv.h │ ├── libcharset.h │ └── localcharset.h ├── lib │ ├── charset.lib │ └── iconv.lib └── share │ ├── doc │ └── libiconv │ │ ├── iconv.1.html │ │ ├── iconv.3.html │ │ ├── iconv_close.3.html │ │ └── iconv_open.3.html │ ├── locale │ ├── ca │ │ └── LC_MESSAGES │ │ │ └── libiconv.mo │ ├── da │ │ └── LC_MESSAGES │ │ │ └── libiconv.mo │ ├── de │ │ └── LC_MESSAGES │ │ │ └── libiconv.mo │ ├── eo │ │ └── LC_MESSAGES │ │ │ └── libiconv.mo │ ├── es │ │ └── LC_MESSAGES │ │ │ └── libiconv.mo │ ├── fi │ │ └── LC_MESSAGES │ │ │ └── libiconv.mo │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── libiconv.mo │ ├── ga │ │ └── LC_MESSAGES │ │ │ └── libiconv.mo │ ├── gl │ │ └── LC_MESSAGES │ │ │ └── libiconv.mo │ ├── hr │ │ └── LC_MESSAGES │ │ │ └── libiconv.mo │ ├── hu │ │ └── LC_MESSAGES │ │ │ └── libiconv.mo │ ├── id │ │ └── LC_MESSAGES │ │ │ └── libiconv.mo │ ├── it │ │ └── LC_MESSAGES │ │ │ └── libiconv.mo │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── libiconv.mo │ ├── ro │ │ └── LC_MESSAGES │ │ │ └── libiconv.mo │ ├── ru │ │ └── LC_MESSAGES │ │ │ └── libiconv.mo │ ├── sk │ │ └── LC_MESSAGES │ │ │ └── libiconv.mo │ ├── sl │ │ └── LC_MESSAGES │ │ │ └── libiconv.mo │ ├── sv │ │ └── LC_MESSAGES │ │ │ └── libiconv.mo │ ├── tr │ │ └── LC_MESSAGES │ │ │ └── libiconv.mo │ └── uk │ │ └── LC_MESSAGES │ │ └── libiconv.mo │ └── man │ ├── man1 │ └── iconv.1 │ └── man3 │ ├── iconv.3 │ ├── iconv_close.3 │ └── iconv_open.3 ├── lua-5.1.5 ├── COPYRIGHT ├── HISTORY ├── INSTALL ├── Makefile ├── README ├── etc │ ├── Makefile │ ├── README │ ├── all.c │ ├── lua.hpp │ ├── lua.ico │ ├── lua.pc │ ├── luavs.bat │ ├── min.c │ ├── noparser.c │ └── strict.lua ├── src │ ├── Makefile │ ├── bit.c │ ├── lapi.c │ ├── lapi.h │ ├── lauxlib.c │ ├── lauxlib.h │ ├── lbaselib.c │ ├── lcode.c │ ├── lcode.h │ ├── ldblib.c │ ├── ldebug.c │ ├── ldebug.h │ ├── ldo.c │ ├── ldo.h │ ├── ldump.c │ ├── lfunc.c │ ├── lfunc.h │ ├── lgc.c │ ├── lgc.h │ ├── linit.c │ ├── liolib.c │ ├── llex.c │ ├── llex.h │ ├── llimits.h │ ├── lmathlib.c │ ├── lmem.c │ ├── lmem.h │ ├── loadlib.c │ ├── lobject.c │ ├── lobject.h │ ├── lopcodes.c │ ├── lopcodes.h │ ├── loslib.c │ ├── lparser.c │ ├── lparser.h │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltm.c │ ├── ltm.h │ ├── lua.c │ ├── lua.h │ ├── luac.c │ ├── luaconf.h │ ├── luaiconv.c │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ ├── lzio.h │ └── print.c └── test │ ├── README │ ├── bisect.lua │ ├── cf.lua │ ├── echo.lua │ ├── env.lua │ ├── factorial.lua │ ├── fib.lua │ ├── fibfor.lua │ ├── globals.lua │ ├── hello.lua │ ├── life.lua │ ├── luac.lua │ ├── printf.lua │ ├── readonly.lua │ ├── sieve.lua │ ├── sort.lua │ ├── table.lua │ ├── trace-calls.lua │ ├── trace-globals.lua │ └── xd.lua ├── lua-cjson-2.1.0 ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── NEWS ├── THANKS ├── dtoa.c ├── dtoa_config.h ├── fpconv.c ├── fpconv.h ├── g_fmt.c ├── lua-cjson-2.1.0-1.rockspec ├── lua-cjson.spec ├── lua │ ├── cjson │ │ └── util.lua │ ├── json2lua.lua │ └── lua2json.lua ├── lua_cjson.c ├── manual.html ├── manual.txt ├── performance.html ├── performance.txt ├── rfc4627.txt ├── runtests.sh ├── strbuf.c ├── strbuf.h └── tests │ ├── README │ ├── 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-nginx-module-0.9.13 ├── Changes ├── README.markdown ├── config ├── doc │ └── HttpLuaModule.wiki ├── 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_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_log.c │ ├── ngx_http_lua_log.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_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_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 ├── tapset │ └── ngx_lua.stp ├── util │ ├── build.sh │ ├── build2.sh │ ├── fix-comments │ ├── gdbinit │ ├── ngx-links │ ├── retab │ ├── revim │ ├── run_test.sh │ └── update-readme.sh └── valgrind.suppress ├── 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 ├── mysql ├── config ├── ngx_http_mysql_test.c ├── ngx_mysql.c └── ngx_mysql.h ├── nginx.sln ├── nginx.suo ├── nginx.v11.suo ├── nginx.vcproj ├── nginx.vcxproj ├── nginx.vcxproj.filters ├── nginx.vcxproj.user ├── ngx_auto_config.h ├── ngx_auto_headers.h ├── ngx_devel_kit-0.2.19 ├── README ├── 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_modules.c ├── openssl ├── aes.h ├── applink.c ├── asn1.h ├── asn1_mac.h ├── asn1t.h ├── bio.h ├── blowfish.h ├── bn.h ├── buffer.h ├── cast.h ├── comp.h ├── conf.h ├── conf_api.h ├── crypto.h ├── des.h ├── des_old.h ├── dh.h ├── dsa.h ├── dso.h ├── dtls1.h ├── e_os2.h ├── ebcdic.h ├── ec.h ├── ecdh.h ├── ecdsa.h ├── engine.h ├── err.h ├── evp.h ├── hmac.h ├── idea.h ├── krb5_asn.h ├── kssl.h ├── lhash.h ├── md2.h ├── md4.h ├── md5.h ├── obj_mac.h ├── objects.h ├── ocsp.h ├── opensslconf.h ├── opensslv.h ├── ossl_typ.h ├── pem.h ├── pem2.h ├── pkcs12.h ├── pkcs7.h ├── pq_compat.h ├── pqueue.h ├── rand.h ├── rc2.h ├── rc4.h ├── ripemd.h ├── rsa.h ├── safestack.h ├── sha.h ├── ssl.h ├── ssl2.h ├── ssl23.h ├── ssl3.h ├── stack.h ├── store.h ├── symhacks.h ├── tls1.h ├── tmdiff.h ├── txt_db.h ├── ui.h ├── ui_compat.h ├── x509.h ├── x509_vfy.h └── x509v3.h ├── os ├── unix │ ├── ngx_aio_read.c │ ├── ngx_aio_read_chain.c │ ├── ngx_aio_write.c │ ├── ngx_aio_write_chain.c │ ├── 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_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_rfork_thread.c │ ├── ngx_freebsd_rfork_thread.h │ ├── 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.h │ ├── ngx_pthread_thread.c │ ├── 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_user.c │ ├── ngx_user.h │ ├── ngx_writev_chain.c │ └── rfork_thread.S └── win32 │ ├── nginx.ico │ ├── nginx.rc │ ├── nginx_icon16.xpm │ ├── nginx_icon32.xpm │ ├── nginx_icon48.xpm │ ├── ngx_alloc.c │ ├── ngx_alloc.h │ ├── ngx_atomic.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 ├── pcre-8.12 ├── .deps │ ├── dftables.Po │ ├── pcre_chartables.Plo │ ├── pcre_compile.Plo │ ├── pcre_config.Plo │ ├── pcre_dfa_exec.Plo │ ├── pcre_exec.Plo │ ├── pcre_fullinfo.Plo │ ├── pcre_get.Plo │ ├── pcre_globals.Plo │ ├── pcre_info.Plo │ ├── pcre_maketables.Plo │ ├── pcre_newline.Plo │ ├── pcre_ord2utf8.Plo │ ├── pcre_refcount.Plo │ ├── pcre_scanner.Plo │ ├── pcre_scanner_unittest.Po │ ├── pcre_stringpiece.Plo │ ├── pcre_stringpiece_unittest.Po │ ├── pcre_study.Plo │ ├── pcre_tables.Plo │ ├── pcre_try_flipped.Plo │ ├── pcre_ucd.Plo │ ├── pcre_valid_utf8.Plo │ ├── pcre_version.Plo │ ├── pcre_xclass.Plo │ ├── pcrecpp.Plo │ ├── pcrecpp_unittest.Po │ ├── pcregrep.Po │ ├── pcreposix.Plo │ └── pcretest.Po ├── .libs │ ├── libpcre-0.dll │ ├── libpcre.a │ ├── libpcre.dll.a │ ├── libpcre.la │ ├── libpcre.lai │ ├── libpcrecpp-0.dll │ ├── libpcrecpp.a │ ├── libpcrecpp.dll.a │ ├── libpcrecpp.la │ ├── libpcrecpp.lai │ ├── libpcreposix-0.dll │ ├── libpcreposix.a │ ├── libpcreposix.dll.a │ ├── libpcreposix.la │ ├── libpcreposix.lai │ ├── lt-pcre_scanner_unittest.c │ ├── lt-pcre_stringpiece_unittest.c │ ├── lt-pcrecpp_unittest.c │ ├── lt-pcregrep.c │ ├── lt-pcretest.c │ ├── pcre_scanner_unittest.exe │ ├── pcre_scanner_unittest_ltshwrapper │ ├── pcre_stringpiece_unittest.exe │ ├── pcre_stringpiece_unittest_ltshwrapper │ ├── pcrecpp_unittest.exe │ ├── pcrecpp_unittest_ltshwrapper │ ├── pcregrep.exe │ ├── pcregrep_ltshwrapper │ ├── pcretest.exe │ └── pcretest_ltshwrapper ├── 132html ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── CleanTxt ├── Detrail ├── HACKING ├── INSTALL ├── LICENCE ├── Makefile ├── Makefile.am ├── Makefile.in ├── NEWS ├── NON-UNIX-USE ├── PrepareRelease ├── README ├── RunGrepTest ├── RunTest ├── RunTest.bat ├── aclocal.m4 ├── build │ ├── bin │ │ ├── libpcre-0.dll │ │ ├── libpcrecpp-0.dll │ │ ├── libpcreposix-0.dll │ │ ├── pcre-config │ │ ├── pcregrep.exe │ │ └── pcretest.exe │ ├── include │ │ ├── pcre.h │ │ ├── pcre_scanner.h │ │ ├── pcre_stringpiece.h │ │ ├── pcrecpp.h │ │ ├── pcrecpparg.h │ │ └── pcreposix.h │ ├── lib │ │ ├── libpcre.a │ │ ├── libpcre.dll.a │ │ ├── libpcre.la │ │ ├── libpcrecpp.a │ │ ├── libpcrecpp.dll.a │ │ ├── libpcrecpp.la │ │ ├── libpcreposix.a │ │ ├── libpcreposix.dll.a │ │ ├── libpcreposix.la │ │ └── pkgconfig │ │ │ ├── libpcre.pc │ │ │ ├── libpcrecpp.pc │ │ │ └── libpcreposix.pc │ └── share │ │ └── man │ │ ├── man1 │ │ ├── pcre-config.1 │ │ ├── pcregrep.1 │ │ └── pcretest.1 │ │ └── man3 │ │ ├── pcre.3 │ │ ├── pcre_compile.3 │ │ ├── pcre_compile2.3 │ │ ├── pcre_config.3 │ │ ├── pcre_copy_named_substring.3 │ │ ├── pcre_copy_substring.3 │ │ ├── pcre_dfa_exec.3 │ │ ├── pcre_exec.3 │ │ ├── pcre_free_substring.3 │ │ ├── pcre_free_substring_list.3 │ │ ├── pcre_fullinfo.3 │ │ ├── pcre_get_named_substring.3 │ │ ├── pcre_get_stringnumber.3 │ │ ├── pcre_get_stringtable_entries.3 │ │ ├── pcre_get_substring.3 │ │ ├── pcre_get_substring_list.3 │ │ ├── pcre_info.3 │ │ ├── pcre_maketables.3 │ │ ├── pcre_refcount.3 │ │ ├── pcre_study.3 │ │ ├── pcre_version.3 │ │ ├── pcreapi.3 │ │ ├── pcrebuild.3 │ │ ├── pcrecallout.3 │ │ ├── pcrecompat.3 │ │ ├── pcrecpp.3 │ │ ├── pcrematching.3 │ │ ├── pcrepartial.3 │ │ ├── pcrepattern.3 │ │ ├── pcreperform.3 │ │ ├── pcreposix.3 │ │ ├── pcreprecompile.3 │ │ ├── pcresample.3 │ │ ├── pcrestack.3 │ │ └── pcresyntax.3 ├── cmake │ ├── COPYING-CMAKE-SCRIPTS │ ├── FindPackageHandleStandardArgs.cmake │ └── FindReadline.cmake ├── config-cmake.h.in ├── config.guess ├── config.h ├── config.h.generic ├── config.h.in ├── config.log ├── config.status ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── dftables.c ├── install-sh ├── libpcre.la ├── libpcre.pc ├── libpcre.pc.in ├── libpcrecpp.la ├── libpcrecpp.pc ├── libpcrecpp.pc.in ├── libpcreposix.la ├── libpcreposix.pc ├── libpcreposix.pc.in ├── libtool ├── ltmain.sh ├── makevp.bat ├── makevp_c.txt ├── makevp_l.txt ├── missing ├── pcre-config ├── pcre-config.in ├── pcre.h ├── pcre.h.generic ├── pcre.h.in ├── pcre_chartables.c ├── pcre_chartables.c.dist ├── pcre_chartables.lo ├── pcre_compile.c ├── pcre_compile.lo ├── pcre_config.c ├── pcre_config.lo ├── pcre_dfa_exec.c ├── pcre_dfa_exec.lo ├── pcre_exec.c ├── pcre_exec.lo ├── pcre_fullinfo.c ├── pcre_fullinfo.lo ├── pcre_get.c ├── pcre_get.lo ├── pcre_globals.c ├── pcre_globals.lo ├── pcre_info.c ├── pcre_info.lo ├── pcre_internal.h ├── pcre_maketables.c ├── pcre_maketables.lo ├── pcre_newline.c ├── pcre_newline.lo ├── pcre_ord2utf8.c ├── pcre_ord2utf8.lo ├── pcre_printint.src ├── pcre_refcount.c ├── pcre_refcount.lo ├── pcre_scanner.cc ├── pcre_scanner.h ├── pcre_scanner.lo ├── pcre_scanner_unittest.cc ├── pcre_scanner_unittest.exe ├── pcre_stringpiece.cc ├── pcre_stringpiece.h ├── pcre_stringpiece.h.in ├── pcre_stringpiece.lo ├── pcre_stringpiece_unittest.cc ├── pcre_stringpiece_unittest.exe ├── pcre_study.c ├── pcre_study.lo ├── pcre_tables.c ├── pcre_tables.lo ├── pcre_try_flipped.c ├── pcre_try_flipped.lo ├── pcre_ucd.c ├── pcre_ucd.lo ├── pcre_valid_utf8.c ├── pcre_valid_utf8.lo ├── pcre_version.c ├── pcre_version.lo ├── pcre_xclass.c ├── pcre_xclass.lo ├── pcrecpp.cc ├── pcrecpp.h ├── pcrecpp.lo ├── pcrecpp_internal.h ├── pcrecpp_unittest.cc ├── pcrecpp_unittest.exe ├── pcrecpparg.h ├── pcrecpparg.h.in ├── pcredemo.c ├── pcregexp.pas ├── pcregrep.c ├── pcregrep.exe ├── pcreposix.c ├── pcreposix.h ├── pcreposix.lo ├── pcretest.c ├── pcretest.exe ├── perltest.pl ├── stamp-h1 └── ucp.h ├── stream ├── ngx_stream.c ├── ngx_stream.h ├── ngx_stream_core_module.c ├── ngx_stream_handler.c ├── ngx_stream_proxy_module.c ├── ngx_stream_ssl_module.c ├── ngx_stream_ssl_module.h ├── 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 └── zlib ├── CMakeLists.txt ├── ChangeLog ├── FAQ ├── INDEX ├── Makefile ├── Makefile.gcc ├── Makefile.in ├── README ├── adler32.c ├── amiga ├── Makefile.pup └── Makefile.sas ├── compress.c ├── configure ├── contrib ├── README.contrib ├── ada │ ├── buffer_demo.adb │ ├── mtest.adb │ ├── read.adb │ ├── readme.txt │ ├── test.adb │ ├── zlib-streams.adb │ ├── zlib-streams.ads │ ├── zlib-thin.adb │ ├── zlib-thin.ads │ ├── zlib.adb │ ├── zlib.ads │ └── zlib.gpr ├── amd64 │ └── amd64-match.S ├── asm686 │ ├── README.686 │ └── match.S ├── blast │ ├── Makefile │ ├── README │ ├── blast.c │ ├── blast.h │ ├── test.pk │ └── test.txt ├── delphi │ ├── ZLib.pas │ ├── ZLibConst.pas │ ├── readme.txt │ └── zlibd32.mak ├── dotzlib │ ├── DotZLib.build │ ├── DotZLib.chm │ ├── DotZLib.sln │ ├── DotZLib │ │ ├── AssemblyInfo.cs │ │ ├── ChecksumImpl.cs │ │ ├── CircularBuffer.cs │ │ ├── CodecBase.cs │ │ ├── Deflater.cs │ │ ├── DotZLib.cs │ │ ├── DotZLib.csproj │ │ ├── GZipStream.cs │ │ ├── Inflater.cs │ │ └── UnitTests.cs │ ├── LICENSE_1_0.txt │ └── readme.txt ├── gcc_gvmat64 │ └── gvmat64.S ├── infback9 │ ├── README │ ├── infback9.c │ ├── infback9.h │ ├── inffix9.h │ ├── inflate9.h │ ├── inftree9.c │ └── inftree9.h ├── inflate86 │ ├── inffas86.c │ └── inffast.S ├── iostream │ ├── test.cpp │ ├── zfstream.cpp │ └── zfstream.h ├── iostream2 │ ├── zstream.h │ └── zstream_test.cpp ├── iostream3 │ ├── README │ ├── TODO │ ├── test.cc │ ├── zfstream.cc │ └── zfstream.h ├── masmx64 │ ├── bld_ml64.bat │ ├── gvmat64.asm │ ├── inffas8664.c │ ├── inffasx64.asm │ └── readme.txt ├── masmx86 │ ├── bld_ml32.bat │ ├── inffas32.asm │ ├── match686.asm │ └── readme.txt ├── minizip │ ├── Makefile │ ├── MiniZip64_Changes.txt │ ├── MiniZip64_info.txt │ ├── crypt.h │ ├── ioapi.c │ ├── ioapi.h │ ├── iowin32.c │ ├── iowin32.h │ ├── make_vms.com │ ├── miniunz.c │ ├── minizip.c │ ├── mztools.c │ ├── mztools.h │ ├── unzip.c │ ├── unzip.h │ ├── zip.c │ └── zip.h ├── pascal │ ├── example.pas │ ├── readme.txt │ ├── zlibd32.mak │ └── zlibpas.pas ├── puff │ ├── Makefile │ ├── README │ ├── puff.c │ ├── puff.h │ └── zeros.raw ├── testzlib │ ├── testzlib.c │ └── testzlib.txt ├── untgz │ ├── Makefile │ ├── Makefile.msc │ └── untgz.c └── vstudio │ ├── readme.txt │ ├── vc10 │ ├── miniunz.vcxproj │ ├── miniunz.vcxproj.filters │ ├── miniunz.vcxproj.user │ ├── minizip.vcxproj │ ├── minizip.vcxproj.filters │ ├── minizip.vcxproj.user │ ├── testzlib.vcxproj │ ├── testzlib.vcxproj.filters │ ├── testzlib.vcxproj.user │ ├── testzlibdll.vcxproj │ ├── testzlibdll.vcxproj.filters │ ├── testzlibdll.vcxproj.user │ ├── zlib.rc │ ├── zlibstat.vcxproj │ ├── zlibstat.vcxproj.filters │ ├── zlibstat.vcxproj.user │ ├── zlibvc.def │ ├── zlibvc.sln │ ├── zlibvc.vcxproj │ ├── zlibvc.vcxproj.filters │ └── zlibvc.vcxproj.user │ └── vc9 │ ├── miniunz.vcproj │ ├── minizip.vcproj │ ├── testzlib.vcproj │ ├── testzlibdll.vcproj │ ├── zlib.rc │ ├── zlibstat.vcproj │ ├── zlibvc.def │ ├── zlibvc.sln │ └── zlibvc.vcproj ├── crc32.c ├── crc32.h ├── deflate.c ├── deflate.h ├── doc ├── algorithm.txt ├── rfc1950.txt ├── rfc1951.txt ├── rfc1952.txt └── txtvsbin.txt ├── example.c ├── example.exe ├── example_d.exe ├── examples ├── README.examples ├── enough.c ├── fitblk.c ├── gun.c ├── gzappend.c ├── gzjoin.c ├── gzlog.c ├── gzlog.h ├── zlib_how.html ├── zpipe.c └── zran.c ├── gzclose.c ├── gzguts.h ├── gzlib.c ├── gzread.c ├── gzwrite.c ├── infback.c ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── libz.a ├── libzdll.a ├── make_vms.com ├── minigzip.c ├── minigzip.exe ├── minigzip_d.exe ├── msdos ├── Makefile.bor ├── Makefile.dj2 ├── Makefile.emx ├── Makefile.msc └── Makefile.tc ├── nintendods ├── Makefile └── README ├── old ├── Makefile.riscos ├── README ├── as400 │ ├── bndsrc │ ├── compile.clp │ ├── readme.txt │ └── zlib.inc ├── descrip.mms ├── os2 │ ├── Makefile.os2 │ └── zlib.def ├── visual-basic.txt └── visualc6 │ ├── README.txt │ ├── example.dsp │ ├── minigzip.dsp │ ├── zlib.dsp │ └── zlib.dsw ├── qnx └── package.qpg ├── treebuild.xml ├── trees.c ├── trees.h ├── uncompr.c ├── watcom ├── watcom_f.mak └── watcom_l.mak ├── win32 ├── DLL_FAQ.txt ├── Makefile.bor ├── Makefile.emx ├── Makefile.gcc ├── Makefile.msc ├── README-WIN32.txt ├── VisualC.txt ├── zlib.def ├── zlib1.aps └── zlib1.rc ├── zconf.h ├── zconf.h.cmakein ├── zconf.h.in ├── zlib.3 ├── zlib.3.pdf ├── zlib.h ├── zlib.map ├── zlib.pc.in ├── zlib1.dll ├── zlib2ansi ├── zutil.c └── zutil.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/.gitignore -------------------------------------------------------------------------------- /Debug/conf/fastcgi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/conf/fastcgi.conf -------------------------------------------------------------------------------- /Debug/conf/fastcgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/conf/fastcgi_params -------------------------------------------------------------------------------- /Debug/conf/koi-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/conf/koi-utf -------------------------------------------------------------------------------- /Debug/conf/koi-win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/conf/koi-win -------------------------------------------------------------------------------- /Debug/conf/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/conf/mime.types -------------------------------------------------------------------------------- /Debug/conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/conf/nginx.conf -------------------------------------------------------------------------------- /Debug/conf/scgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/conf/scgi_params -------------------------------------------------------------------------------- /Debug/conf/uwsgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/conf/uwsgi_params -------------------------------------------------------------------------------- /Debug/conf/win-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/conf/win-utf -------------------------------------------------------------------------------- /Debug/html/50x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/html/50x.html -------------------------------------------------------------------------------- /Debug/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/html/index.html -------------------------------------------------------------------------------- /Debug/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/libeay32.dll -------------------------------------------------------------------------------- /Debug/lua/aes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/aes.lua -------------------------------------------------------------------------------- /Debug/lua/logging.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/logging.lua -------------------------------------------------------------------------------- /Debug/lua/mch/console.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/mch/console.lua -------------------------------------------------------------------------------- /Debug/lua/mch/controller.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/mch/controller.lua -------------------------------------------------------------------------------- /Debug/lua/mch/debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/mch/debug.lua -------------------------------------------------------------------------------- /Debug/lua/mch/front.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/mch/front.lua -------------------------------------------------------------------------------- /Debug/lua/mch/functional.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/mch/functional.lua -------------------------------------------------------------------------------- /Debug/lua/mch/logger.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/mch/logger.lua -------------------------------------------------------------------------------- /Debug/lua/mch/request.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/mch/request.lua -------------------------------------------------------------------------------- /Debug/lua/mch/response.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/mch/response.lua -------------------------------------------------------------------------------- /Debug/lua/mch/router.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/mch/router.lua -------------------------------------------------------------------------------- /Debug/lua/mch/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/mch/util.lua -------------------------------------------------------------------------------- /Debug/lua/mch/vars.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/mch/vars.lua -------------------------------------------------------------------------------- /Debug/lua/mch_access.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/mch_access.lua -------------------------------------------------------------------------------- /Debug/lua/mch_content.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/mch_content.lua -------------------------------------------------------------------------------- /Debug/lua/md5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/md5.lua -------------------------------------------------------------------------------- /Debug/lua/memcached.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/memcached.lua -------------------------------------------------------------------------------- /Debug/lua/mysql.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/mysql.lua -------------------------------------------------------------------------------- /Debug/lua/random.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/random.lua -------------------------------------------------------------------------------- /Debug/lua/redis.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/redis.lua -------------------------------------------------------------------------------- /Debug/lua/router.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/router.lua -------------------------------------------------------------------------------- /Debug/lua/session.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/session.lua -------------------------------------------------------------------------------- /Debug/lua/sha.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/sha.lua -------------------------------------------------------------------------------- /Debug/lua/sha1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/sha1.lua -------------------------------------------------------------------------------- /Debug/lua/sha224.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/sha224.lua -------------------------------------------------------------------------------- /Debug/lua/sha256.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/sha256.lua -------------------------------------------------------------------------------- /Debug/lua/sha384.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/sha384.lua -------------------------------------------------------------------------------- /Debug/lua/sha512.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/sha512.lua -------------------------------------------------------------------------------- /Debug/lua/string.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/lua/string.lua -------------------------------------------------------------------------------- /Debug/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/rc.command.1.tlog -------------------------------------------------------------------------------- /Debug/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/rc.read.1.tlog -------------------------------------------------------------------------------- /Debug/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/rc.write.1.tlog -------------------------------------------------------------------------------- /Debug/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/ssleay32.dll -------------------------------------------------------------------------------- /Debug/web/app/adminindex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/web/app/adminindex.lua -------------------------------------------------------------------------------- /Debug/web/app/index.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/web/app/index.lua -------------------------------------------------------------------------------- /Debug/web/app/login.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/web/app/login.lua -------------------------------------------------------------------------------- /Debug/web/app/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/web/app/test.lua -------------------------------------------------------------------------------- /Debug/web/application.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/web/application.lua -------------------------------------------------------------------------------- /Debug/web/index1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/web/index1.lua -------------------------------------------------------------------------------- /Debug/web/routing.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/web/routing.lua -------------------------------------------------------------------------------- /Debug/web/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/web/views/index.html -------------------------------------------------------------------------------- /Debug/web/views/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/Debug/web/views/login.html -------------------------------------------------------------------------------- /LuaJIT-2.0.3/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/COPYRIGHT -------------------------------------------------------------------------------- /LuaJIT-2.0.3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/Makefile -------------------------------------------------------------------------------- /LuaJIT-2.0.3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/README -------------------------------------------------------------------------------- /LuaJIT-2.0.3/doc/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/doc/faq.html -------------------------------------------------------------------------------- /LuaJIT-2.0.3/doc/luajit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/doc/luajit.html -------------------------------------------------------------------------------- /LuaJIT-2.0.3/doc/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/doc/status.html -------------------------------------------------------------------------------- /LuaJIT-2.0.3/etc/luajit.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/etc/luajit.1 -------------------------------------------------------------------------------- /LuaJIT-2.0.3/etc/luajit.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/etc/luajit.pc -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/Makefile -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lauxlib.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lib_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lib_aux.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lib_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lib_base.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lib_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lib_bit.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lib_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lib_debug.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lib_ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lib_ffi.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lib_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lib_init.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lib_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lib_io.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lib_jit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lib_jit.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lib_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lib_math.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lib_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lib_os.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lib_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lib_table.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj.supp -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_alloc.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_alloc.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_api.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_arch.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_asm.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_asm.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_bc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_bc.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_bc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_bc.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_bcdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_bcdef.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_bcdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_bcdump.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_bcread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_bcread.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_carith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_carith.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_carith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_carith.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_ccall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_ccall.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_ccall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_ccall.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_cconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_cconv.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_cconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_cconv.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_cdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_cdata.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_cdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_cdata.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_char.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_char.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_clib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_clib.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_clib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_clib.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_cparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_cparse.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_cparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_cparse.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_ctype.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_ctype.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_debug.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_debug.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_def.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_err.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_err.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_errmsg.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_ff.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_ffdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_ffdef.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_frame.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_func.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_func.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_gc.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_gc.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_gdbjit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_gdbjit.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_gdbjit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_gdbjit.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_ir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_ir.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_ir.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_ircall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_ircall.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_iropt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_iropt.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_jit.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_lex.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_lex.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_lib.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_lib.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_libdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_libdef.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_load.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_mcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_mcode.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_mcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_mcode.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_meta.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_meta.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_obj.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_obj.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_parse.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_parse.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_recdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_recdef.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_record.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_record.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_snap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_snap.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_snap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_snap.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_state.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_state.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_str.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_str.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_tab.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_tab.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_target.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_trace.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_trace.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_udata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_udata.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_udata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_udata.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_vm.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_vm.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_vm.obj -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lj_vmmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lj_vmmath.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/ljamalg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/ljamalg.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lua.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lua.hpp -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lua51.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lua51.dll -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lua51.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lua51.exp -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lua51.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lua51.lib -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/luaconf.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/luaiconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/luaiconv.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/luajit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/luajit.c -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/luajit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/luajit.exe -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/luajit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/luajit.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/lualib.h -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/vm_arm.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/vm_arm.dasc -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/vm_ppc.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/vm_ppc.dasc -------------------------------------------------------------------------------- /LuaJIT-2.0.3/src/vm_x86.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.0.3/src/vm_x86.dasc -------------------------------------------------------------------------------- /LuaJIT-2.1/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/COPYRIGHT -------------------------------------------------------------------------------- /LuaJIT-2.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/Makefile -------------------------------------------------------------------------------- /LuaJIT-2.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/README -------------------------------------------------------------------------------- /LuaJIT-2.1/doc/bluequad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/doc/bluequad.css -------------------------------------------------------------------------------- /LuaJIT-2.1/doc/changes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/doc/changes.html -------------------------------------------------------------------------------- /LuaJIT-2.1/doc/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/doc/faq.html -------------------------------------------------------------------------------- /LuaJIT-2.1/doc/luajit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/doc/luajit.html -------------------------------------------------------------------------------- /LuaJIT-2.1/doc/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/doc/status.html -------------------------------------------------------------------------------- /LuaJIT-2.1/etc/luajit.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/etc/luajit.1 -------------------------------------------------------------------------------- /LuaJIT-2.1/etc/luajit.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/etc/luajit.pc -------------------------------------------------------------------------------- /LuaJIT-2.1/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/Makefile -------------------------------------------------------------------------------- /LuaJIT-2.1/src/host/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/host/README -------------------------------------------------------------------------------- /LuaJIT-2.1/src/jit/bc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/jit/bc.lua -------------------------------------------------------------------------------- /LuaJIT-2.1/src/jit/p.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/jit/p.lua -------------------------------------------------------------------------------- /LuaJIT-2.1/src/jit/v.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/jit/v.lua -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lauxlib.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lib_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lib_aux.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lib_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lib_base.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lib_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lib_bit.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lib_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lib_debug.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lib_ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lib_ffi.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lib_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lib_init.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lib_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lib_io.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lib_jit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lib_jit.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lib_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lib_math.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lib_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lib_os.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lib_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lib_table.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj.supp -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_alloc.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_alloc.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_api.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_arch.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_asm.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_asm.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_bc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_bc.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_bc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_bc.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_bcdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_bcdump.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_bcread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_bcread.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_buf.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_buf.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_carith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_carith.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_carith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_carith.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_ccall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_ccall.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_ccall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_ccall.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_cconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_cconv.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_cconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_cconv.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_cdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_cdata.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_cdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_cdata.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_char.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_char.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_clib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_clib.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_clib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_clib.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_cparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_cparse.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_cparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_cparse.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_ctype.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_ctype.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_debug.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_debug.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_def.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_err.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_err.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_errmsg.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_ff.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_frame.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_func.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_func.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_gc.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_gc.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_gdbjit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_gdbjit.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_gdbjit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_gdbjit.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_ir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_ir.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_ir.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_ircall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_ircall.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_iropt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_iropt.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_jit.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_lex.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_lex.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_lib.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_lib.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_load.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_mcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_mcode.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_mcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_mcode.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_meta.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_meta.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_obj.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_obj.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_parse.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_parse.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_record.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_record.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_snap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_snap.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_snap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_snap.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_state.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_state.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_str.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_str.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_strfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_strfmt.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_strfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_strfmt.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_tab.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_tab.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_target.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_trace.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_trace.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_udata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_udata.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_udata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_udata.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_vm.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_vm.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lj_vmmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lj_vmmath.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/ljamalg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/ljamalg.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lua.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lua.hpp -------------------------------------------------------------------------------- /LuaJIT-2.1/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/luaconf.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/luaiconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/luaiconv.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/luajit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/luajit.c -------------------------------------------------------------------------------- /LuaJIT-2.1/src/luajit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/luajit.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/lualib.h -------------------------------------------------------------------------------- /LuaJIT-2.1/src/vm_arm.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/vm_arm.dasc -------------------------------------------------------------------------------- /LuaJIT-2.1/src/vm_ppc.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/vm_ppc.dasc -------------------------------------------------------------------------------- /LuaJIT-2.1/src/vm_x86.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/LuaJIT-2.1/src/vm_x86.dasc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/README.md -------------------------------------------------------------------------------- /conf/fastcgi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/conf/fastcgi.conf -------------------------------------------------------------------------------- /conf/fastcgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/conf/fastcgi_params -------------------------------------------------------------------------------- /conf/koi-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/conf/koi-utf -------------------------------------------------------------------------------- /conf/koi-win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/conf/koi-win -------------------------------------------------------------------------------- /conf/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/conf/mime.types -------------------------------------------------------------------------------- /conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/conf/nginx.conf -------------------------------------------------------------------------------- /conf/scgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/conf/scgi_params -------------------------------------------------------------------------------- /conf/uwsgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/conf/uwsgi_params -------------------------------------------------------------------------------- /conf/win-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/conf/win-utf -------------------------------------------------------------------------------- /core/nginx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/nginx.c -------------------------------------------------------------------------------- /core/nginx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/nginx.h -------------------------------------------------------------------------------- /core/ngx_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_array.c -------------------------------------------------------------------------------- /core/ngx_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_array.h -------------------------------------------------------------------------------- /core/ngx_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_buf.c -------------------------------------------------------------------------------- /core/ngx_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_buf.h -------------------------------------------------------------------------------- /core/ngx_conf_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_conf_file.c -------------------------------------------------------------------------------- /core/ngx_conf_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_conf_file.h -------------------------------------------------------------------------------- /core/ngx_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_config.h -------------------------------------------------------------------------------- /core/ngx_connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_connection.c -------------------------------------------------------------------------------- /core/ngx_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_connection.h -------------------------------------------------------------------------------- /core/ngx_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_core.h -------------------------------------------------------------------------------- /core/ngx_cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_cpuinfo.c -------------------------------------------------------------------------------- /core/ngx_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_crc.h -------------------------------------------------------------------------------- /core/ngx_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_crc32.c -------------------------------------------------------------------------------- /core/ngx_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_crc32.h -------------------------------------------------------------------------------- /core/ngx_crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_crypt.c -------------------------------------------------------------------------------- /core/ngx_crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_crypt.h -------------------------------------------------------------------------------- /core/ngx_cycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_cycle.c -------------------------------------------------------------------------------- /core/ngx_cycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_cycle.h -------------------------------------------------------------------------------- /core/ngx_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_file.c -------------------------------------------------------------------------------- /core/ngx_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_file.h -------------------------------------------------------------------------------- /core/ngx_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_hash.c -------------------------------------------------------------------------------- /core/ngx_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_hash.h -------------------------------------------------------------------------------- /core/ngx_inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_inet.c -------------------------------------------------------------------------------- /core/ngx_inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_inet.h -------------------------------------------------------------------------------- /core/ngx_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_list.c -------------------------------------------------------------------------------- /core/ngx_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_list.h -------------------------------------------------------------------------------- /core/ngx_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_log.c -------------------------------------------------------------------------------- /core/ngx_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_log.h -------------------------------------------------------------------------------- /core/ngx_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_md5.c -------------------------------------------------------------------------------- /core/ngx_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_md5.h -------------------------------------------------------------------------------- /core/ngx_murmurhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_murmurhash.c -------------------------------------------------------------------------------- /core/ngx_murmurhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_murmurhash.h -------------------------------------------------------------------------------- /core/ngx_open_file_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_open_file_cache.c -------------------------------------------------------------------------------- /core/ngx_open_file_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_open_file_cache.h -------------------------------------------------------------------------------- /core/ngx_output_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_output_chain.c -------------------------------------------------------------------------------- /core/ngx_palloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_palloc.c -------------------------------------------------------------------------------- /core/ngx_palloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_palloc.h -------------------------------------------------------------------------------- /core/ngx_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_parse.c -------------------------------------------------------------------------------- /core/ngx_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_parse.h -------------------------------------------------------------------------------- /core/ngx_proxy_protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_proxy_protocol.c -------------------------------------------------------------------------------- /core/ngx_proxy_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_proxy_protocol.h -------------------------------------------------------------------------------- /core/ngx_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_queue.c -------------------------------------------------------------------------------- /core/ngx_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_queue.h -------------------------------------------------------------------------------- /core/ngx_radix_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_radix_tree.c -------------------------------------------------------------------------------- /core/ngx_radix_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_radix_tree.h -------------------------------------------------------------------------------- /core/ngx_rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_rbtree.c -------------------------------------------------------------------------------- /core/ngx_rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_rbtree.h -------------------------------------------------------------------------------- /core/ngx_regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_regex.c -------------------------------------------------------------------------------- /core/ngx_regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_regex.h -------------------------------------------------------------------------------- /core/ngx_resolver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_resolver.c -------------------------------------------------------------------------------- /core/ngx_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_resolver.h -------------------------------------------------------------------------------- /core/ngx_rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_rwlock.c -------------------------------------------------------------------------------- /core/ngx_rwlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_rwlock.h -------------------------------------------------------------------------------- /core/ngx_sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_sha1.h -------------------------------------------------------------------------------- /core/ngx_shmtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_shmtx.c -------------------------------------------------------------------------------- /core/ngx_shmtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_shmtx.h -------------------------------------------------------------------------------- /core/ngx_slab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_slab.c -------------------------------------------------------------------------------- /core/ngx_slab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_slab.h -------------------------------------------------------------------------------- /core/ngx_spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_spinlock.c -------------------------------------------------------------------------------- /core/ngx_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_string.c -------------------------------------------------------------------------------- /core/ngx_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_string.h -------------------------------------------------------------------------------- /core/ngx_syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_syslog.c -------------------------------------------------------------------------------- /core/ngx_syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_syslog.h -------------------------------------------------------------------------------- /core/ngx_thread_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_thread_pool.c -------------------------------------------------------------------------------- /core/ngx_thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_thread_pool.h -------------------------------------------------------------------------------- /core/ngx_times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_times.c -------------------------------------------------------------------------------- /core/ngx_times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/core/ngx_times.h -------------------------------------------------------------------------------- /debug/charset.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/debug/charset.dll -------------------------------------------------------------------------------- /debug/iconv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/debug/iconv.dll -------------------------------------------------------------------------------- /debug/lua/template.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/debug/lua/template.lua -------------------------------------------------------------------------------- /event/ngx_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/event/ngx_event.c -------------------------------------------------------------------------------- /event/ngx_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/event/ngx_event.h -------------------------------------------------------------------------------- /event/ngx_event_accept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/event/ngx_event_accept.c -------------------------------------------------------------------------------- /event/ngx_event_acceptex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/event/ngx_event_acceptex.c -------------------------------------------------------------------------------- /event/ngx_event_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/event/ngx_event_connect.c -------------------------------------------------------------------------------- /event/ngx_event_connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/event/ngx_event_connect.h -------------------------------------------------------------------------------- /event/ngx_event_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/event/ngx_event_mutex.c -------------------------------------------------------------------------------- /event/ngx_event_openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/event/ngx_event_openssl.c -------------------------------------------------------------------------------- /event/ngx_event_openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/event/ngx_event_openssl.h -------------------------------------------------------------------------------- /event/ngx_event_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/event/ngx_event_pipe.c -------------------------------------------------------------------------------- /event/ngx_event_pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/event/ngx_event_pipe.h -------------------------------------------------------------------------------- /event/ngx_event_posted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/event/ngx_event_posted.c -------------------------------------------------------------------------------- /event/ngx_event_posted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/event/ngx_event_posted.h -------------------------------------------------------------------------------- /event/ngx_event_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/event/ngx_event_timer.c -------------------------------------------------------------------------------- /event/ngx_event_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/event/ngx_event_timer.h -------------------------------------------------------------------------------- /html/50x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/html/50x.html -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/html/index.html -------------------------------------------------------------------------------- /http/modules/perl/nginx.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/http/modules/perl/nginx.pm -------------------------------------------------------------------------------- /http/modules/perl/nginx.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/http/modules/perl/nginx.xs -------------------------------------------------------------------------------- /http/modules/perl/typemap: -------------------------------------------------------------------------------- 1 | TYPEMAP 2 | 3 | nginx T_PTROBJ 4 | -------------------------------------------------------------------------------- /http/ngx_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/http/ngx_http.c -------------------------------------------------------------------------------- /http/ngx_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/http/ngx_http.h -------------------------------------------------------------------------------- /http/ngx_http_busy_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/http/ngx_http_busy_lock.c -------------------------------------------------------------------------------- /http/ngx_http_busy_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/http/ngx_http_busy_lock.h -------------------------------------------------------------------------------- /http/ngx_http_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/http/ngx_http_cache.h -------------------------------------------------------------------------------- /http/ngx_http_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/http/ngx_http_config.h -------------------------------------------------------------------------------- /http/ngx_http_file_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/http/ngx_http_file_cache.c -------------------------------------------------------------------------------- /http/ngx_http_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/http/ngx_http_parse.c -------------------------------------------------------------------------------- /http/ngx_http_parse_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/http/ngx_http_parse_time.c -------------------------------------------------------------------------------- /http/ngx_http_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/http/ngx_http_request.c -------------------------------------------------------------------------------- /http/ngx_http_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/http/ngx_http_request.h -------------------------------------------------------------------------------- /http/ngx_http_script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/http/ngx_http_script.c -------------------------------------------------------------------------------- /http/ngx_http_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/http/ngx_http_script.h -------------------------------------------------------------------------------- /http/ngx_http_spdy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/http/ngx_http_spdy.c -------------------------------------------------------------------------------- /http/ngx_http_spdy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/http/ngx_http_spdy.h -------------------------------------------------------------------------------- /http/ngx_http_upstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/http/ngx_http_upstream.c -------------------------------------------------------------------------------- /http/ngx_http_upstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/http/ngx_http_upstream.h -------------------------------------------------------------------------------- /http/ngx_http_variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/http/ngx_http_variables.c -------------------------------------------------------------------------------- /http/ngx_http_variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/http/ngx_http_variables.h -------------------------------------------------------------------------------- /lib/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lib/libeay32.dll -------------------------------------------------------------------------------- /lib/libeay32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lib/libeay32.lib -------------------------------------------------------------------------------- /lib/lj_vm.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lib/lj_vm.obj -------------------------------------------------------------------------------- /lib/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lib/ssleay32.dll -------------------------------------------------------------------------------- /lib/ssleay32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lib/ssleay32.lib -------------------------------------------------------------------------------- /lua-5.1.5/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/COPYRIGHT -------------------------------------------------------------------------------- /lua-5.1.5/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/HISTORY -------------------------------------------------------------------------------- /lua-5.1.5/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/INSTALL -------------------------------------------------------------------------------- /lua-5.1.5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/Makefile -------------------------------------------------------------------------------- /lua-5.1.5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/README -------------------------------------------------------------------------------- /lua-5.1.5/etc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/etc/Makefile -------------------------------------------------------------------------------- /lua-5.1.5/etc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/etc/README -------------------------------------------------------------------------------- /lua-5.1.5/etc/all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/etc/all.c -------------------------------------------------------------------------------- /lua-5.1.5/etc/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/etc/lua.hpp -------------------------------------------------------------------------------- /lua-5.1.5/etc/lua.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/etc/lua.ico -------------------------------------------------------------------------------- /lua-5.1.5/etc/lua.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/etc/lua.pc -------------------------------------------------------------------------------- /lua-5.1.5/etc/luavs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/etc/luavs.bat -------------------------------------------------------------------------------- /lua-5.1.5/etc/min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/etc/min.c -------------------------------------------------------------------------------- /lua-5.1.5/etc/noparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/etc/noparser.c -------------------------------------------------------------------------------- /lua-5.1.5/etc/strict.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/etc/strict.lua -------------------------------------------------------------------------------- /lua-5.1.5/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/Makefile -------------------------------------------------------------------------------- /lua-5.1.5/src/bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/bit.c -------------------------------------------------------------------------------- /lua-5.1.5/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lapi.c -------------------------------------------------------------------------------- /lua-5.1.5/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lapi.h -------------------------------------------------------------------------------- /lua-5.1.5/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lauxlib.c -------------------------------------------------------------------------------- /lua-5.1.5/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lauxlib.h -------------------------------------------------------------------------------- /lua-5.1.5/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lbaselib.c -------------------------------------------------------------------------------- /lua-5.1.5/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lcode.c -------------------------------------------------------------------------------- /lua-5.1.5/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lcode.h -------------------------------------------------------------------------------- /lua-5.1.5/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/ldblib.c -------------------------------------------------------------------------------- /lua-5.1.5/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/ldebug.c -------------------------------------------------------------------------------- /lua-5.1.5/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/ldebug.h -------------------------------------------------------------------------------- /lua-5.1.5/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/ldo.c -------------------------------------------------------------------------------- /lua-5.1.5/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/ldo.h -------------------------------------------------------------------------------- /lua-5.1.5/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/ldump.c -------------------------------------------------------------------------------- /lua-5.1.5/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lfunc.c -------------------------------------------------------------------------------- /lua-5.1.5/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lfunc.h -------------------------------------------------------------------------------- /lua-5.1.5/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lgc.c -------------------------------------------------------------------------------- /lua-5.1.5/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lgc.h -------------------------------------------------------------------------------- /lua-5.1.5/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/linit.c -------------------------------------------------------------------------------- /lua-5.1.5/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/liolib.c -------------------------------------------------------------------------------- /lua-5.1.5/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/llex.c -------------------------------------------------------------------------------- /lua-5.1.5/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/llex.h -------------------------------------------------------------------------------- /lua-5.1.5/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/llimits.h -------------------------------------------------------------------------------- /lua-5.1.5/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lmathlib.c -------------------------------------------------------------------------------- /lua-5.1.5/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lmem.c -------------------------------------------------------------------------------- /lua-5.1.5/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lmem.h -------------------------------------------------------------------------------- /lua-5.1.5/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/loadlib.c -------------------------------------------------------------------------------- /lua-5.1.5/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lobject.c -------------------------------------------------------------------------------- /lua-5.1.5/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lobject.h -------------------------------------------------------------------------------- /lua-5.1.5/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lopcodes.c -------------------------------------------------------------------------------- /lua-5.1.5/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lopcodes.h -------------------------------------------------------------------------------- /lua-5.1.5/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/loslib.c -------------------------------------------------------------------------------- /lua-5.1.5/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lparser.c -------------------------------------------------------------------------------- /lua-5.1.5/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lparser.h -------------------------------------------------------------------------------- /lua-5.1.5/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lstate.c -------------------------------------------------------------------------------- /lua-5.1.5/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lstate.h -------------------------------------------------------------------------------- /lua-5.1.5/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lstring.c -------------------------------------------------------------------------------- /lua-5.1.5/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lstring.h -------------------------------------------------------------------------------- /lua-5.1.5/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lstrlib.c -------------------------------------------------------------------------------- /lua-5.1.5/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/ltable.c -------------------------------------------------------------------------------- /lua-5.1.5/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/ltable.h -------------------------------------------------------------------------------- /lua-5.1.5/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/ltablib.c -------------------------------------------------------------------------------- /lua-5.1.5/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/ltm.c -------------------------------------------------------------------------------- /lua-5.1.5/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/ltm.h -------------------------------------------------------------------------------- /lua-5.1.5/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lua.c -------------------------------------------------------------------------------- /lua-5.1.5/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lua.h -------------------------------------------------------------------------------- /lua-5.1.5/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/luac.c -------------------------------------------------------------------------------- /lua-5.1.5/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/luaconf.h -------------------------------------------------------------------------------- /lua-5.1.5/src/luaiconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/luaiconv.c -------------------------------------------------------------------------------- /lua-5.1.5/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lualib.h -------------------------------------------------------------------------------- /lua-5.1.5/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lundump.c -------------------------------------------------------------------------------- /lua-5.1.5/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lundump.h -------------------------------------------------------------------------------- /lua-5.1.5/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lvm.c -------------------------------------------------------------------------------- /lua-5.1.5/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lvm.h -------------------------------------------------------------------------------- /lua-5.1.5/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lzio.c -------------------------------------------------------------------------------- /lua-5.1.5/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/lzio.h -------------------------------------------------------------------------------- /lua-5.1.5/src/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/src/print.c -------------------------------------------------------------------------------- /lua-5.1.5/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/test/README -------------------------------------------------------------------------------- /lua-5.1.5/test/bisect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/test/bisect.lua -------------------------------------------------------------------------------- /lua-5.1.5/test/cf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/test/cf.lua -------------------------------------------------------------------------------- /lua-5.1.5/test/echo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/test/echo.lua -------------------------------------------------------------------------------- /lua-5.1.5/test/env.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/test/env.lua -------------------------------------------------------------------------------- /lua-5.1.5/test/fib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/test/fib.lua -------------------------------------------------------------------------------- /lua-5.1.5/test/fibfor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/test/fibfor.lua -------------------------------------------------------------------------------- /lua-5.1.5/test/globals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/test/globals.lua -------------------------------------------------------------------------------- /lua-5.1.5/test/life.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/test/life.lua -------------------------------------------------------------------------------- /lua-5.1.5/test/luac.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/test/luac.lua -------------------------------------------------------------------------------- /lua-5.1.5/test/printf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/test/printf.lua -------------------------------------------------------------------------------- /lua-5.1.5/test/sieve.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/test/sieve.lua -------------------------------------------------------------------------------- /lua-5.1.5/test/sort.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/test/sort.lua -------------------------------------------------------------------------------- /lua-5.1.5/test/table.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/test/table.lua -------------------------------------------------------------------------------- /lua-5.1.5/test/xd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-5.1.5/test/xd.lua -------------------------------------------------------------------------------- /lua-cjson-2.1.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-cjson-2.1.0/LICENSE -------------------------------------------------------------------------------- /lua-cjson-2.1.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-cjson-2.1.0/Makefile -------------------------------------------------------------------------------- /lua-cjson-2.1.0/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-cjson-2.1.0/NEWS -------------------------------------------------------------------------------- /lua-cjson-2.1.0/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-cjson-2.1.0/THANKS -------------------------------------------------------------------------------- /lua-cjson-2.1.0/dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-cjson-2.1.0/dtoa.c -------------------------------------------------------------------------------- /lua-cjson-2.1.0/fpconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-cjson-2.1.0/fpconv.c -------------------------------------------------------------------------------- /lua-cjson-2.1.0/fpconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-cjson-2.1.0/fpconv.h -------------------------------------------------------------------------------- /lua-cjson-2.1.0/g_fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-cjson-2.1.0/g_fmt.c -------------------------------------------------------------------------------- /lua-cjson-2.1.0/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-cjson-2.1.0/manual.txt -------------------------------------------------------------------------------- /lua-cjson-2.1.0/strbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-cjson-2.1.0/strbuf.c -------------------------------------------------------------------------------- /lua-cjson-2.1.0/strbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/lua-cjson-2.1.0/strbuf.h -------------------------------------------------------------------------------- /lua-cjson-2.1.0/tests/types.json: -------------------------------------------------------------------------------- 1 | { "array": [ 10, true, null ] } 2 | -------------------------------------------------------------------------------- /lua-nginx-module-0.9.13/tapset/ngx_lua.stp: -------------------------------------------------------------------------------- 1 | function ngx_http_lua_ctx_context(r) 2 | { 3 | 4 | } 5 | 6 | -------------------------------------------------------------------------------- /mail/ngx_mail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/mail/ngx_mail.c -------------------------------------------------------------------------------- /mail/ngx_mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/mail/ngx_mail.h -------------------------------------------------------------------------------- /mail/ngx_mail_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/mail/ngx_mail_handler.c -------------------------------------------------------------------------------- /mail/ngx_mail_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/mail/ngx_mail_parse.c -------------------------------------------------------------------------------- /mail/ngx_mail_ssl_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/mail/ngx_mail_ssl_module.c -------------------------------------------------------------------------------- /mail/ngx_mail_ssl_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/mail/ngx_mail_ssl_module.h -------------------------------------------------------------------------------- /mysql/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/mysql/config -------------------------------------------------------------------------------- /mysql/ngx_mysql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/mysql/ngx_mysql.c -------------------------------------------------------------------------------- /mysql/ngx_mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/mysql/ngx_mysql.h -------------------------------------------------------------------------------- /nginx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/nginx.sln -------------------------------------------------------------------------------- /nginx.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/nginx.suo -------------------------------------------------------------------------------- /nginx.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/nginx.v11.suo -------------------------------------------------------------------------------- /nginx.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/nginx.vcproj -------------------------------------------------------------------------------- /nginx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/nginx.vcxproj -------------------------------------------------------------------------------- /nginx.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/nginx.vcxproj.filters -------------------------------------------------------------------------------- /nginx.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/nginx.vcxproj.user -------------------------------------------------------------------------------- /ngx_auto_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/ngx_auto_config.h -------------------------------------------------------------------------------- /ngx_auto_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/ngx_auto_headers.h -------------------------------------------------------------------------------- /ngx_devel_kit-0.2.19/TODO: -------------------------------------------------------------------------------- 1 | - for backward compatability, add the ndk_macros 2 | -------------------------------------------------------------------------------- /ngx_devel_kit-0.2.19/auto/data/header_files: -------------------------------------------------------------------------------- 1 | array 2 | palloc 3 | 4 | -------------------------------------------------------------------------------- /ngx_devel_kit-0.2.19/auto/data/headers: -------------------------------------------------------------------------------- 1 | http_headers 2 | log 3 | parse 4 | string_util 5 | -------------------------------------------------------------------------------- /ngx_devel_kit-0.2.19/auto/data/prefixes: -------------------------------------------------------------------------------- 1 | ngx 2 | ndk 3 | -------------------------------------------------------------------------------- /ngx_modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/ngx_modules.c -------------------------------------------------------------------------------- /openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/aes.h -------------------------------------------------------------------------------- /openssl/applink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/applink.c -------------------------------------------------------------------------------- /openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/asn1.h -------------------------------------------------------------------------------- /openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/asn1_mac.h -------------------------------------------------------------------------------- /openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/asn1t.h -------------------------------------------------------------------------------- /openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/bio.h -------------------------------------------------------------------------------- /openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/blowfish.h -------------------------------------------------------------------------------- /openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/bn.h -------------------------------------------------------------------------------- /openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/buffer.h -------------------------------------------------------------------------------- /openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/cast.h -------------------------------------------------------------------------------- /openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/comp.h -------------------------------------------------------------------------------- /openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/conf.h -------------------------------------------------------------------------------- /openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/conf_api.h -------------------------------------------------------------------------------- /openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/crypto.h -------------------------------------------------------------------------------- /openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/des.h -------------------------------------------------------------------------------- /openssl/des_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/des_old.h -------------------------------------------------------------------------------- /openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/dh.h -------------------------------------------------------------------------------- /openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/dsa.h -------------------------------------------------------------------------------- /openssl/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/dso.h -------------------------------------------------------------------------------- /openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/dtls1.h -------------------------------------------------------------------------------- /openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/e_os2.h -------------------------------------------------------------------------------- /openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/ebcdic.h -------------------------------------------------------------------------------- /openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/ec.h -------------------------------------------------------------------------------- /openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/ecdh.h -------------------------------------------------------------------------------- /openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/ecdsa.h -------------------------------------------------------------------------------- /openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/engine.h -------------------------------------------------------------------------------- /openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/err.h -------------------------------------------------------------------------------- /openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/evp.h -------------------------------------------------------------------------------- /openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/hmac.h -------------------------------------------------------------------------------- /openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/idea.h -------------------------------------------------------------------------------- /openssl/krb5_asn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/krb5_asn.h -------------------------------------------------------------------------------- /openssl/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/kssl.h -------------------------------------------------------------------------------- /openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/lhash.h -------------------------------------------------------------------------------- /openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/md2.h -------------------------------------------------------------------------------- /openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/md4.h -------------------------------------------------------------------------------- /openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/md5.h -------------------------------------------------------------------------------- /openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/obj_mac.h -------------------------------------------------------------------------------- /openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/objects.h -------------------------------------------------------------------------------- /openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/ocsp.h -------------------------------------------------------------------------------- /openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/opensslconf.h -------------------------------------------------------------------------------- /openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/opensslv.h -------------------------------------------------------------------------------- /openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/ossl_typ.h -------------------------------------------------------------------------------- /openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/pem.h -------------------------------------------------------------------------------- /openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/pem2.h -------------------------------------------------------------------------------- /openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/pkcs12.h -------------------------------------------------------------------------------- /openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/pkcs7.h -------------------------------------------------------------------------------- /openssl/pq_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/pq_compat.h -------------------------------------------------------------------------------- /openssl/pqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/pqueue.h -------------------------------------------------------------------------------- /openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/rand.h -------------------------------------------------------------------------------- /openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/rc2.h -------------------------------------------------------------------------------- /openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/rc4.h -------------------------------------------------------------------------------- /openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/ripemd.h -------------------------------------------------------------------------------- /openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/rsa.h -------------------------------------------------------------------------------- /openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/safestack.h -------------------------------------------------------------------------------- /openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/sha.h -------------------------------------------------------------------------------- /openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/ssl.h -------------------------------------------------------------------------------- /openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/ssl2.h -------------------------------------------------------------------------------- /openssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/ssl23.h -------------------------------------------------------------------------------- /openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/ssl3.h -------------------------------------------------------------------------------- /openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/stack.h -------------------------------------------------------------------------------- /openssl/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/store.h -------------------------------------------------------------------------------- /openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/symhacks.h -------------------------------------------------------------------------------- /openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/tls1.h -------------------------------------------------------------------------------- /openssl/tmdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/tmdiff.h -------------------------------------------------------------------------------- /openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/txt_db.h -------------------------------------------------------------------------------- /openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/ui.h -------------------------------------------------------------------------------- /openssl/ui_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/ui_compat.h -------------------------------------------------------------------------------- /openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/x509.h -------------------------------------------------------------------------------- /openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/x509_vfy.h -------------------------------------------------------------------------------- /openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/openssl/x509v3.h -------------------------------------------------------------------------------- /os/unix/ngx_aio_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_aio_read.c -------------------------------------------------------------------------------- /os/unix/ngx_aio_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_aio_write.c -------------------------------------------------------------------------------- /os/unix/ngx_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_alloc.c -------------------------------------------------------------------------------- /os/unix/ngx_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_alloc.h -------------------------------------------------------------------------------- /os/unix/ngx_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_atomic.h -------------------------------------------------------------------------------- /os/unix/ngx_channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_channel.c -------------------------------------------------------------------------------- /os/unix/ngx_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_channel.h -------------------------------------------------------------------------------- /os/unix/ngx_daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_daemon.c -------------------------------------------------------------------------------- /os/unix/ngx_darwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_darwin.h -------------------------------------------------------------------------------- /os/unix/ngx_darwin_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_darwin_init.c -------------------------------------------------------------------------------- /os/unix/ngx_errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_errno.c -------------------------------------------------------------------------------- /os/unix/ngx_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_errno.h -------------------------------------------------------------------------------- /os/unix/ngx_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_files.c -------------------------------------------------------------------------------- /os/unix/ngx_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_files.h -------------------------------------------------------------------------------- /os/unix/ngx_freebsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_freebsd.h -------------------------------------------------------------------------------- /os/unix/ngx_freebsd_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_freebsd_init.c -------------------------------------------------------------------------------- /os/unix/ngx_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_linux.h -------------------------------------------------------------------------------- /os/unix/ngx_linux_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_linux_config.h -------------------------------------------------------------------------------- /os/unix/ngx_linux_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_linux_init.c -------------------------------------------------------------------------------- /os/unix/ngx_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_os.h -------------------------------------------------------------------------------- /os/unix/ngx_posix_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_posix_config.h -------------------------------------------------------------------------------- /os/unix/ngx_posix_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_posix_init.c -------------------------------------------------------------------------------- /os/unix/ngx_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_process.c -------------------------------------------------------------------------------- /os/unix/ngx_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_process.h -------------------------------------------------------------------------------- /os/unix/ngx_readv_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_readv_chain.c -------------------------------------------------------------------------------- /os/unix/ngx_recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_recv.c -------------------------------------------------------------------------------- /os/unix/ngx_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_send.c -------------------------------------------------------------------------------- /os/unix/ngx_setaffinity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_setaffinity.c -------------------------------------------------------------------------------- /os/unix/ngx_setaffinity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_setaffinity.h -------------------------------------------------------------------------------- /os/unix/ngx_setproctitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_setproctitle.c -------------------------------------------------------------------------------- /os/unix/ngx_setproctitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_setproctitle.h -------------------------------------------------------------------------------- /os/unix/ngx_shmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_shmem.c -------------------------------------------------------------------------------- /os/unix/ngx_shmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_shmem.h -------------------------------------------------------------------------------- /os/unix/ngx_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_socket.c -------------------------------------------------------------------------------- /os/unix/ngx_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_socket.h -------------------------------------------------------------------------------- /os/unix/ngx_solaris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_solaris.h -------------------------------------------------------------------------------- /os/unix/ngx_solaris_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_solaris_init.c -------------------------------------------------------------------------------- /os/unix/ngx_sunpro_x86.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_sunpro_x86.il -------------------------------------------------------------------------------- /os/unix/ngx_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_thread.h -------------------------------------------------------------------------------- /os/unix/ngx_thread_cond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_thread_cond.c -------------------------------------------------------------------------------- /os/unix/ngx_thread_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_thread_id.c -------------------------------------------------------------------------------- /os/unix/ngx_thread_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_thread_mutex.c -------------------------------------------------------------------------------- /os/unix/ngx_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_time.c -------------------------------------------------------------------------------- /os/unix/ngx_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_time.h -------------------------------------------------------------------------------- /os/unix/ngx_udp_recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_udp_recv.c -------------------------------------------------------------------------------- /os/unix/ngx_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_user.c -------------------------------------------------------------------------------- /os/unix/ngx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_user.h -------------------------------------------------------------------------------- /os/unix/ngx_writev_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/ngx_writev_chain.c -------------------------------------------------------------------------------- /os/unix/rfork_thread.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/unix/rfork_thread.S -------------------------------------------------------------------------------- /os/win32/nginx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/nginx.ico -------------------------------------------------------------------------------- /os/win32/nginx.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/nginx.rc -------------------------------------------------------------------------------- /os/win32/nginx_icon16.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/nginx_icon16.xpm -------------------------------------------------------------------------------- /os/win32/nginx_icon32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/nginx_icon32.xpm -------------------------------------------------------------------------------- /os/win32/nginx_icon48.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/nginx_icon48.xpm -------------------------------------------------------------------------------- /os/win32/ngx_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_alloc.c -------------------------------------------------------------------------------- /os/win32/ngx_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_alloc.h -------------------------------------------------------------------------------- /os/win32/ngx_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_atomic.h -------------------------------------------------------------------------------- /os/win32/ngx_errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_errno.c -------------------------------------------------------------------------------- /os/win32/ngx_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_errno.h -------------------------------------------------------------------------------- /os/win32/ngx_event_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_event_log.c -------------------------------------------------------------------------------- /os/win32/ngx_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_files.c -------------------------------------------------------------------------------- /os/win32/ngx_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_files.h -------------------------------------------------------------------------------- /os/win32/ngx_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_os.h -------------------------------------------------------------------------------- /os/win32/ngx_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_process.c -------------------------------------------------------------------------------- /os/win32/ngx_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_process.h -------------------------------------------------------------------------------- /os/win32/ngx_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_service.c -------------------------------------------------------------------------------- /os/win32/ngx_shmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_shmem.c -------------------------------------------------------------------------------- /os/win32/ngx_shmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_shmem.h -------------------------------------------------------------------------------- /os/win32/ngx_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_socket.c -------------------------------------------------------------------------------- /os/win32/ngx_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_socket.h -------------------------------------------------------------------------------- /os/win32/ngx_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_stat.c -------------------------------------------------------------------------------- /os/win32/ngx_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_thread.c -------------------------------------------------------------------------------- /os/win32/ngx_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_thread.h -------------------------------------------------------------------------------- /os/win32/ngx_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_time.c -------------------------------------------------------------------------------- /os/win32/ngx_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_time.h -------------------------------------------------------------------------------- /os/win32/ngx_udp_wsarecv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_udp_wsarecv.c -------------------------------------------------------------------------------- /os/win32/ngx_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_user.c -------------------------------------------------------------------------------- /os/win32/ngx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_user.h -------------------------------------------------------------------------------- /os/win32/ngx_win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_win32_init.c -------------------------------------------------------------------------------- /os/win32/ngx_wsarecv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_wsarecv.c -------------------------------------------------------------------------------- /os/win32/ngx_wsasend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/os/win32/ngx_wsasend.c -------------------------------------------------------------------------------- /pcre-8.12/.deps/dftables.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre-8.12/.libs/libpcre.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/.libs/libpcre.a -------------------------------------------------------------------------------- /pcre-8.12/.libs/libpcre.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/.libs/libpcre.la -------------------------------------------------------------------------------- /pcre-8.12/132html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/132html -------------------------------------------------------------------------------- /pcre-8.12/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/AUTHORS -------------------------------------------------------------------------------- /pcre-8.12/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/CMakeLists.txt -------------------------------------------------------------------------------- /pcre-8.12/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/COPYING -------------------------------------------------------------------------------- /pcre-8.12/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/ChangeLog -------------------------------------------------------------------------------- /pcre-8.12/CleanTxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/CleanTxt -------------------------------------------------------------------------------- /pcre-8.12/Detrail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/Detrail -------------------------------------------------------------------------------- /pcre-8.12/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/HACKING -------------------------------------------------------------------------------- /pcre-8.12/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/INSTALL -------------------------------------------------------------------------------- /pcre-8.12/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/LICENCE -------------------------------------------------------------------------------- /pcre-8.12/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/Makefile -------------------------------------------------------------------------------- /pcre-8.12/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/Makefile.am -------------------------------------------------------------------------------- /pcre-8.12/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/Makefile.in -------------------------------------------------------------------------------- /pcre-8.12/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/NEWS -------------------------------------------------------------------------------- /pcre-8.12/NON-UNIX-USE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/NON-UNIX-USE -------------------------------------------------------------------------------- /pcre-8.12/PrepareRelease: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/PrepareRelease -------------------------------------------------------------------------------- /pcre-8.12/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/README -------------------------------------------------------------------------------- /pcre-8.12/RunGrepTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/RunGrepTest -------------------------------------------------------------------------------- /pcre-8.12/RunTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/RunTest -------------------------------------------------------------------------------- /pcre-8.12/RunTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/RunTest.bat -------------------------------------------------------------------------------- /pcre-8.12/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/aclocal.m4 -------------------------------------------------------------------------------- /pcre-8.12/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/config.guess -------------------------------------------------------------------------------- /pcre-8.12/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/config.h -------------------------------------------------------------------------------- /pcre-8.12/config.h.generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/config.h.generic -------------------------------------------------------------------------------- /pcre-8.12/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/config.h.in -------------------------------------------------------------------------------- /pcre-8.12/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/config.log -------------------------------------------------------------------------------- /pcre-8.12/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/config.status -------------------------------------------------------------------------------- /pcre-8.12/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/config.sub -------------------------------------------------------------------------------- /pcre-8.12/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/configure -------------------------------------------------------------------------------- /pcre-8.12/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/configure.ac -------------------------------------------------------------------------------- /pcre-8.12/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/depcomp -------------------------------------------------------------------------------- /pcre-8.12/dftables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/dftables.c -------------------------------------------------------------------------------- /pcre-8.12/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/install-sh -------------------------------------------------------------------------------- /pcre-8.12/libpcre.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/libpcre.la -------------------------------------------------------------------------------- /pcre-8.12/libpcre.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/libpcre.pc -------------------------------------------------------------------------------- /pcre-8.12/libpcre.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/libpcre.pc.in -------------------------------------------------------------------------------- /pcre-8.12/libpcrecpp.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/libpcrecpp.la -------------------------------------------------------------------------------- /pcre-8.12/libpcrecpp.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/libpcrecpp.pc -------------------------------------------------------------------------------- /pcre-8.12/libpcrecpp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/libpcrecpp.pc.in -------------------------------------------------------------------------------- /pcre-8.12/libpcreposix.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/libpcreposix.la -------------------------------------------------------------------------------- /pcre-8.12/libpcreposix.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/libpcreposix.pc -------------------------------------------------------------------------------- /pcre-8.12/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/libtool -------------------------------------------------------------------------------- /pcre-8.12/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/ltmain.sh -------------------------------------------------------------------------------- /pcre-8.12/makevp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/makevp.bat -------------------------------------------------------------------------------- /pcre-8.12/makevp_c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/makevp_c.txt -------------------------------------------------------------------------------- /pcre-8.12/makevp_l.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/makevp_l.txt -------------------------------------------------------------------------------- /pcre-8.12/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/missing -------------------------------------------------------------------------------- /pcre-8.12/pcre-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre-config -------------------------------------------------------------------------------- /pcre-8.12/pcre-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre-config.in -------------------------------------------------------------------------------- /pcre-8.12/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre.h -------------------------------------------------------------------------------- /pcre-8.12/pcre.h.generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre.h.generic -------------------------------------------------------------------------------- /pcre-8.12/pcre.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre.h.in -------------------------------------------------------------------------------- /pcre-8.12/pcre_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_compile.c -------------------------------------------------------------------------------- /pcre-8.12/pcre_compile.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_compile.lo -------------------------------------------------------------------------------- /pcre-8.12/pcre_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_config.c -------------------------------------------------------------------------------- /pcre-8.12/pcre_config.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_config.lo -------------------------------------------------------------------------------- /pcre-8.12/pcre_dfa_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_dfa_exec.c -------------------------------------------------------------------------------- /pcre-8.12/pcre_dfa_exec.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_dfa_exec.lo -------------------------------------------------------------------------------- /pcre-8.12/pcre_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_exec.c -------------------------------------------------------------------------------- /pcre-8.12/pcre_exec.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_exec.lo -------------------------------------------------------------------------------- /pcre-8.12/pcre_fullinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_fullinfo.c -------------------------------------------------------------------------------- /pcre-8.12/pcre_fullinfo.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_fullinfo.lo -------------------------------------------------------------------------------- /pcre-8.12/pcre_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_get.c -------------------------------------------------------------------------------- /pcre-8.12/pcre_get.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_get.lo -------------------------------------------------------------------------------- /pcre-8.12/pcre_globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_globals.c -------------------------------------------------------------------------------- /pcre-8.12/pcre_globals.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_globals.lo -------------------------------------------------------------------------------- /pcre-8.12/pcre_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_info.c -------------------------------------------------------------------------------- /pcre-8.12/pcre_info.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_info.lo -------------------------------------------------------------------------------- /pcre-8.12/pcre_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_internal.h -------------------------------------------------------------------------------- /pcre-8.12/pcre_newline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_newline.c -------------------------------------------------------------------------------- /pcre-8.12/pcre_newline.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_newline.lo -------------------------------------------------------------------------------- /pcre-8.12/pcre_ord2utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_ord2utf8.c -------------------------------------------------------------------------------- /pcre-8.12/pcre_ord2utf8.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_ord2utf8.lo -------------------------------------------------------------------------------- /pcre-8.12/pcre_refcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_refcount.c -------------------------------------------------------------------------------- /pcre-8.12/pcre_refcount.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_refcount.lo -------------------------------------------------------------------------------- /pcre-8.12/pcre_scanner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_scanner.cc -------------------------------------------------------------------------------- /pcre-8.12/pcre_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_scanner.h -------------------------------------------------------------------------------- /pcre-8.12/pcre_scanner.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_scanner.lo -------------------------------------------------------------------------------- /pcre-8.12/pcre_study.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_study.c -------------------------------------------------------------------------------- /pcre-8.12/pcre_study.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_study.lo -------------------------------------------------------------------------------- /pcre-8.12/pcre_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_tables.c -------------------------------------------------------------------------------- /pcre-8.12/pcre_tables.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_tables.lo -------------------------------------------------------------------------------- /pcre-8.12/pcre_ucd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_ucd.c -------------------------------------------------------------------------------- /pcre-8.12/pcre_ucd.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_ucd.lo -------------------------------------------------------------------------------- /pcre-8.12/pcre_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_version.c -------------------------------------------------------------------------------- /pcre-8.12/pcre_version.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_version.lo -------------------------------------------------------------------------------- /pcre-8.12/pcre_xclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_xclass.c -------------------------------------------------------------------------------- /pcre-8.12/pcre_xclass.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcre_xclass.lo -------------------------------------------------------------------------------- /pcre-8.12/pcrecpp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcrecpp.cc -------------------------------------------------------------------------------- /pcre-8.12/pcrecpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcrecpp.h -------------------------------------------------------------------------------- /pcre-8.12/pcrecpp.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcrecpp.lo -------------------------------------------------------------------------------- /pcre-8.12/pcrecpparg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcrecpparg.h -------------------------------------------------------------------------------- /pcre-8.12/pcrecpparg.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcrecpparg.h.in -------------------------------------------------------------------------------- /pcre-8.12/pcredemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcredemo.c -------------------------------------------------------------------------------- /pcre-8.12/pcregexp.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcregexp.pas -------------------------------------------------------------------------------- /pcre-8.12/pcregrep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcregrep.c -------------------------------------------------------------------------------- /pcre-8.12/pcregrep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcregrep.exe -------------------------------------------------------------------------------- /pcre-8.12/pcreposix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcreposix.c -------------------------------------------------------------------------------- /pcre-8.12/pcreposix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcreposix.h -------------------------------------------------------------------------------- /pcre-8.12/pcreposix.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcreposix.lo -------------------------------------------------------------------------------- /pcre-8.12/pcretest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcretest.c -------------------------------------------------------------------------------- /pcre-8.12/pcretest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/pcretest.exe -------------------------------------------------------------------------------- /pcre-8.12/perltest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/perltest.pl -------------------------------------------------------------------------------- /pcre-8.12/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /pcre-8.12/ucp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/pcre-8.12/ucp.h -------------------------------------------------------------------------------- /stream/ngx_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/stream/ngx_stream.c -------------------------------------------------------------------------------- /stream/ngx_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/stream/ngx_stream.h -------------------------------------------------------------------------------- /zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/ChangeLog -------------------------------------------------------------------------------- /zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/FAQ -------------------------------------------------------------------------------- /zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/INDEX -------------------------------------------------------------------------------- /zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/Makefile -------------------------------------------------------------------------------- /zlib/Makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/Makefile.gcc -------------------------------------------------------------------------------- /zlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/Makefile.in -------------------------------------------------------------------------------- /zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/README -------------------------------------------------------------------------------- /zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/adler32.c -------------------------------------------------------------------------------- /zlib/amiga/Makefile.pup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/amiga/Makefile.pup -------------------------------------------------------------------------------- /zlib/amiga/Makefile.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/amiga/Makefile.sas -------------------------------------------------------------------------------- /zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/compress.c -------------------------------------------------------------------------------- /zlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/configure -------------------------------------------------------------------------------- /zlib/contrib/ada/mtest.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/contrib/ada/mtest.adb -------------------------------------------------------------------------------- /zlib/contrib/ada/read.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/contrib/ada/read.adb -------------------------------------------------------------------------------- /zlib/contrib/ada/test.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/contrib/ada/test.adb -------------------------------------------------------------------------------- /zlib/contrib/ada/zlib.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/contrib/ada/zlib.adb -------------------------------------------------------------------------------- /zlib/contrib/ada/zlib.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/contrib/ada/zlib.ads -------------------------------------------------------------------------------- /zlib/contrib/ada/zlib.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/contrib/ada/zlib.gpr -------------------------------------------------------------------------------- /zlib/contrib/blast/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/contrib/blast/README -------------------------------------------------------------------------------- /zlib/contrib/blast/blast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/contrib/blast/blast.c -------------------------------------------------------------------------------- /zlib/contrib/blast/blast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/contrib/blast/blast.h -------------------------------------------------------------------------------- /zlib/contrib/blast/test.pk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/contrib/blast/test.pk -------------------------------------------------------------------------------- /zlib/contrib/minizip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/contrib/minizip/zip.c -------------------------------------------------------------------------------- /zlib/contrib/minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/contrib/minizip/zip.h -------------------------------------------------------------------------------- /zlib/contrib/puff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/contrib/puff/Makefile -------------------------------------------------------------------------------- /zlib/contrib/puff/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/contrib/puff/README -------------------------------------------------------------------------------- /zlib/contrib/puff/puff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/contrib/puff/puff.c -------------------------------------------------------------------------------- /zlib/contrib/puff/puff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/contrib/puff/puff.h -------------------------------------------------------------------------------- /zlib/contrib/untgz/untgz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/contrib/untgz/untgz.c -------------------------------------------------------------------------------- /zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/crc32.c -------------------------------------------------------------------------------- /zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/crc32.h -------------------------------------------------------------------------------- /zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/deflate.c -------------------------------------------------------------------------------- /zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/deflate.h -------------------------------------------------------------------------------- /zlib/doc/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/doc/algorithm.txt -------------------------------------------------------------------------------- /zlib/doc/rfc1950.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/doc/rfc1950.txt -------------------------------------------------------------------------------- /zlib/doc/rfc1951.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/doc/rfc1951.txt -------------------------------------------------------------------------------- /zlib/doc/rfc1952.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/doc/rfc1952.txt -------------------------------------------------------------------------------- /zlib/doc/txtvsbin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/doc/txtvsbin.txt -------------------------------------------------------------------------------- /zlib/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/example.c -------------------------------------------------------------------------------- /zlib/example.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/example.exe -------------------------------------------------------------------------------- /zlib/example_d.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/example_d.exe -------------------------------------------------------------------------------- /zlib/examples/enough.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/examples/enough.c -------------------------------------------------------------------------------- /zlib/examples/fitblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/examples/fitblk.c -------------------------------------------------------------------------------- /zlib/examples/gun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/examples/gun.c -------------------------------------------------------------------------------- /zlib/examples/gzappend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/examples/gzappend.c -------------------------------------------------------------------------------- /zlib/examples/gzjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/examples/gzjoin.c -------------------------------------------------------------------------------- /zlib/examples/gzlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/examples/gzlog.c -------------------------------------------------------------------------------- /zlib/examples/gzlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/examples/gzlog.h -------------------------------------------------------------------------------- /zlib/examples/zpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/examples/zpipe.c -------------------------------------------------------------------------------- /zlib/examples/zran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/examples/zran.c -------------------------------------------------------------------------------- /zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/gzclose.c -------------------------------------------------------------------------------- /zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/gzguts.h -------------------------------------------------------------------------------- /zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/gzlib.c -------------------------------------------------------------------------------- /zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/gzread.c -------------------------------------------------------------------------------- /zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/gzwrite.c -------------------------------------------------------------------------------- /zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/infback.c -------------------------------------------------------------------------------- /zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/inffast.c -------------------------------------------------------------------------------- /zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/inffast.h -------------------------------------------------------------------------------- /zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/inffixed.h -------------------------------------------------------------------------------- /zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/inflate.c -------------------------------------------------------------------------------- /zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/inflate.h -------------------------------------------------------------------------------- /zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/inftrees.c -------------------------------------------------------------------------------- /zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/inftrees.h -------------------------------------------------------------------------------- /zlib/libz.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/libz.a -------------------------------------------------------------------------------- /zlib/libzdll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/libzdll.a -------------------------------------------------------------------------------- /zlib/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/make_vms.com -------------------------------------------------------------------------------- /zlib/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/minigzip.c -------------------------------------------------------------------------------- /zlib/minigzip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/minigzip.exe -------------------------------------------------------------------------------- /zlib/minigzip_d.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/minigzip_d.exe -------------------------------------------------------------------------------- /zlib/msdos/Makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/msdos/Makefile.bor -------------------------------------------------------------------------------- /zlib/msdos/Makefile.dj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/msdos/Makefile.dj2 -------------------------------------------------------------------------------- /zlib/msdos/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/msdos/Makefile.emx -------------------------------------------------------------------------------- /zlib/msdos/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/msdos/Makefile.msc -------------------------------------------------------------------------------- /zlib/msdos/Makefile.tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/msdos/Makefile.tc -------------------------------------------------------------------------------- /zlib/nintendods/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/nintendods/Makefile -------------------------------------------------------------------------------- /zlib/nintendods/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/nintendods/README -------------------------------------------------------------------------------- /zlib/old/Makefile.riscos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/old/Makefile.riscos -------------------------------------------------------------------------------- /zlib/old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/old/README -------------------------------------------------------------------------------- /zlib/old/as400/bndsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/old/as400/bndsrc -------------------------------------------------------------------------------- /zlib/old/as400/compile.clp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/old/as400/compile.clp -------------------------------------------------------------------------------- /zlib/old/as400/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/old/as400/readme.txt -------------------------------------------------------------------------------- /zlib/old/as400/zlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/old/as400/zlib.inc -------------------------------------------------------------------------------- /zlib/old/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/old/descrip.mms -------------------------------------------------------------------------------- /zlib/old/os2/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/old/os2/Makefile.os2 -------------------------------------------------------------------------------- /zlib/old/os2/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/old/os2/zlib.def -------------------------------------------------------------------------------- /zlib/old/visual-basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/old/visual-basic.txt -------------------------------------------------------------------------------- /zlib/old/visualc6/zlib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/old/visualc6/zlib.dsp -------------------------------------------------------------------------------- /zlib/old/visualc6/zlib.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/old/visualc6/zlib.dsw -------------------------------------------------------------------------------- /zlib/qnx/package.qpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/qnx/package.qpg -------------------------------------------------------------------------------- /zlib/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/treebuild.xml -------------------------------------------------------------------------------- /zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/trees.c -------------------------------------------------------------------------------- /zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/trees.h -------------------------------------------------------------------------------- /zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/uncompr.c -------------------------------------------------------------------------------- /zlib/watcom/watcom_f.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/watcom/watcom_f.mak -------------------------------------------------------------------------------- /zlib/watcom/watcom_l.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/watcom/watcom_l.mak -------------------------------------------------------------------------------- /zlib/win32/DLL_FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/win32/DLL_FAQ.txt -------------------------------------------------------------------------------- /zlib/win32/Makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/win32/Makefile.bor -------------------------------------------------------------------------------- /zlib/win32/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/win32/Makefile.emx -------------------------------------------------------------------------------- /zlib/win32/Makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/win32/Makefile.gcc -------------------------------------------------------------------------------- /zlib/win32/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/win32/Makefile.msc -------------------------------------------------------------------------------- /zlib/win32/VisualC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/win32/VisualC.txt -------------------------------------------------------------------------------- /zlib/win32/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/win32/zlib.def -------------------------------------------------------------------------------- /zlib/win32/zlib1.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/win32/zlib1.aps -------------------------------------------------------------------------------- /zlib/win32/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/win32/zlib1.rc -------------------------------------------------------------------------------- /zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/zconf.h -------------------------------------------------------------------------------- /zlib/zconf.h.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/zconf.h.cmakein -------------------------------------------------------------------------------- /zlib/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/zconf.h.in -------------------------------------------------------------------------------- /zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/zlib.3 -------------------------------------------------------------------------------- /zlib/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/zlib.3.pdf -------------------------------------------------------------------------------- /zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/zlib.h -------------------------------------------------------------------------------- /zlib/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/zlib.map -------------------------------------------------------------------------------- /zlib/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/zlib.pc.in -------------------------------------------------------------------------------- /zlib/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/zlib1.dll -------------------------------------------------------------------------------- /zlib/zlib2ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/zlib2ansi -------------------------------------------------------------------------------- /zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/zutil.c -------------------------------------------------------------------------------- /zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butland/nginx-window/HEAD/zlib/zutil.h --------------------------------------------------------------------------------