├── .gitignore ├── 3rdparty ├── openssl │ ├── include │ │ └── openssl │ │ │ ├── aes.h │ │ │ ├── applink.c │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1t.h │ │ │ ├── bio.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buffer.h │ │ │ ├── camellia.h │ │ │ ├── cast.h │ │ │ ├── cmac.h │ │ │ ├── cms.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 │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── mdc2.h │ │ │ ├── modes.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── ocsp.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs7.h │ │ │ ├── pqueue.h │ │ │ ├── rand.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── safestack.h │ │ │ ├── seed.h │ │ │ ├── sha.h │ │ │ ├── srp.h │ │ │ ├── srtp.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl23.h │ │ │ ├── ssl3.h │ │ │ ├── stack.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── ts.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── ui_compat.h │ │ │ ├── whrlpool.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ └── lib │ │ └── x86 │ │ ├── libeay32.lib │ │ └── ssleay32.lib └── zlib │ ├── include │ ├── zconf.h │ └── zlib.h │ └── lib │ └── x86 │ └── zlib.lib ├── README.md ├── env.7z ├── nginx.sln └── nginx ├── 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_module.c ├── ngx_module.h ├── ngx_murmurhash.c ├── ngx_murmurhash.h ├── ngx_open_file_cache.c ├── ngx_open_file_cache.h ├── ngx_output_chain.c ├── ngx_palloc.c ├── ngx_palloc.h ├── ngx_parse.c ├── ngx_parse.h ├── ngx_parse_time.c ├── ngx_parse_time.h ├── ngx_proxy_protocol.c ├── ngx_proxy_protocol.h ├── ngx_queue.c ├── ngx_queue.h ├── ngx_radix_tree.c ├── ngx_radix_tree.h ├── ngx_rbtree.c ├── ngx_rbtree.h ├── ngx_regex.c ├── ngx_regex.h ├── ngx_resolver.c ├── ngx_resolver.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 ├── event ├── modules │ ├── ngx_devpoll_module.c │ ├── ngx_epoll_module.c │ ├── ngx_eventport_module.c │ ├── ngx_iocp_module.c │ ├── ngx_iocp_module.h │ ├── ngx_kqueue_module.c │ ├── ngx_poll_module.c │ ├── ngx_select_module.c │ └── ngx_win32_select_module.c ├── ngx_event.c ├── ngx_event.h ├── ngx_event_accept.c ├── ngx_event_acceptex.c ├── ngx_event_connect.c ├── ngx_event_connect.h ├── ngx_event_connectex.c ├── ngx_event_openssl.c ├── ngx_event_openssl.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 ├── http ├── modules │ ├── ngx_http_access_module.c │ ├── ngx_http_addition_filter_module.c │ ├── ngx_http_auth_basic_module.c │ ├── ngx_http_auth_request_module.c │ ├── ngx_http_autoindex_module.c │ ├── ngx_http_browser_module.c │ ├── ngx_http_charset_filter_module.c │ ├── ngx_http_chunked_filter_module.c │ ├── ngx_http_dav_module.c │ ├── ngx_http_degradation_module.c │ ├── ngx_http_empty_gif_module.c │ ├── ngx_http_fastcgi_module.c │ ├── ngx_http_flv_module.c │ ├── ngx_http_geo_module.c │ ├── ngx_http_geoip_module.c │ ├── ngx_http_gunzip_filter_module.c │ ├── ngx_http_gzip_filter_module.c │ ├── ngx_http_gzip_static_module.c │ ├── ngx_http_headers_filter_module.c │ ├── ngx_http_image_filter_module.c │ ├── ngx_http_index_module.c │ ├── ngx_http_limit_conn_module.c │ ├── ngx_http_limit_req_module.c │ ├── ngx_http_log_module.c │ ├── ngx_http_map_module.c │ ├── ngx_http_memcached_module.c │ ├── ngx_http_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_slice_filter_module.c │ ├── ngx_http_split_clients_module.c │ ├── ngx_http_ssi_filter_module.c │ ├── ngx_http_ssi_filter_module.h │ ├── ngx_http_ssl_module.c │ ├── ngx_http_ssl_module.h │ ├── ngx_http_static_module.c │ ├── ngx_http_stub_status_module.c │ ├── ngx_http_sub_filter_module.c │ ├── ngx_http_upstream_hash_module.c │ ├── ngx_http_upstream_ip_hash_module.c │ ├── ngx_http_upstream_keepalive_module.c │ ├── ngx_http_upstream_least_conn_module.c │ ├── ngx_http_upstream_zone_module.c │ ├── ngx_http_userid_filter_module.c │ ├── ngx_http_uwsgi_module.c │ ├── ngx_http_xslt_filter_module.c │ └── perl │ │ ├── Makefile.PL │ │ ├── nginx.pm │ │ ├── nginx.xs │ │ ├── ngx_http_perl_module.c │ │ ├── ngx_http_perl_module.h │ │ └── typemap ├── ngx_http.c ├── ngx_http.h ├── ngx_http_cache.h ├── ngx_http_config.h ├── ngx_http_copy_filter_module.c ├── ngx_http_core_module.c ├── ngx_http_core_module.h ├── ngx_http_file_cache.c ├── ngx_http_header_filter_module.c ├── ngx_http_parse.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_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 └── v2 │ ├── ngx_http_v2.c │ ├── ngx_http_v2.h │ ├── ngx_http_v2_filter_module.c │ ├── ngx_http_v2_huff_decode.c │ ├── ngx_http_v2_huff_encode.c │ ├── ngx_http_v2_module.c │ ├── ngx_http_v2_module.h │ └── ngx_http_v2_table.c ├── mail ├── ngx_mail.c ├── ngx_mail.h ├── ngx_mail_auth_http_module.c ├── ngx_mail_core_module.c ├── ngx_mail_handler.c ├── ngx_mail_imap_handler.c ├── ngx_mail_imap_module.c ├── ngx_mail_imap_module.h ├── ngx_mail_parse.c ├── ngx_mail_pop3_handler.c ├── ngx_mail_pop3_module.c ├── ngx_mail_pop3_module.h ├── ngx_mail_proxy_module.c ├── ngx_mail_smtp_handler.c ├── ngx_mail_smtp_module.c ├── ngx_mail_smtp_module.h ├── ngx_mail_ssl_module.c └── ngx_mail_ssl_module.h ├── misc ├── ngx_cpp_test_module.cpp └── ngx_google_perftools_module.c ├── nginx.vcxproj ├── nginx.vcxproj.filters ├── nginx.vcxproj.user ├── ngx_auto_config.h ├── ngx_auto_headers.h ├── ngx_modules.c ├── ngx_pch.c ├── os ├── unix │ ├── ngx_alloc.c │ ├── ngx_alloc.h │ ├── ngx_atomic.h │ ├── ngx_channel.c │ ├── ngx_channel.h │ ├── ngx_daemon.c │ ├── ngx_darwin.h │ ├── ngx_darwin_config.h │ ├── ngx_darwin_init.c │ ├── ngx_darwin_sendfile_chain.c │ ├── ngx_dlopen.c │ ├── ngx_dlopen.h │ ├── ngx_errno.c │ ├── ngx_errno.h │ ├── ngx_file_aio_read.c │ ├── ngx_files.c │ ├── ngx_files.h │ ├── ngx_freebsd.h │ ├── ngx_freebsd_config.h │ ├── ngx_freebsd_init.c │ ├── ngx_freebsd_sendfile_chain.c │ ├── ngx_gcc_atomic_amd64.h │ ├── ngx_gcc_atomic_ppc.h │ ├── ngx_gcc_atomic_sparc64.h │ ├── ngx_gcc_atomic_x86.h │ ├── ngx_linux.h │ ├── ngx_linux_aio_read.c │ ├── ngx_linux_config.h │ ├── ngx_linux_init.c │ ├── ngx_linux_sendfile_chain.c │ ├── ngx_os.h │ ├── ngx_posix_config.h │ ├── ngx_posix_init.c │ ├── ngx_process.c │ ├── ngx_process.h │ ├── ngx_process_cycle.c │ ├── ngx_process_cycle.h │ ├── ngx_readv_chain.c │ ├── ngx_recv.c │ ├── ngx_send.c │ ├── ngx_setaffinity.c │ ├── ngx_setaffinity.h │ ├── ngx_setproctitle.c │ ├── ngx_setproctitle.h │ ├── ngx_shmem.c │ ├── ngx_shmem.h │ ├── ngx_socket.c │ ├── ngx_socket.h │ ├── ngx_solaris.h │ ├── ngx_solaris_config.h │ ├── ngx_solaris_init.c │ ├── ngx_solaris_sendfilev_chain.c │ ├── ngx_sunpro_amd64.il │ ├── ngx_sunpro_atomic_sparc64.h │ ├── ngx_sunpro_sparc64.il │ ├── ngx_sunpro_x86.il │ ├── ngx_thread.h │ ├── ngx_thread_cond.c │ ├── ngx_thread_id.c │ ├── ngx_thread_mutex.c │ ├── ngx_time.c │ ├── ngx_time.h │ ├── ngx_udp_recv.c │ ├── ngx_udp_send.c │ ├── ngx_user.c │ ├── ngx_user.h │ └── ngx_writev_chain.c └── win32 │ ├── nginx.ico │ ├── nginx.rc │ ├── nginx_icon16.xpm │ ├── nginx_icon32.xpm │ ├── nginx_icon48.xpm │ ├── ngx_alloc.c │ ├── ngx_alloc.h │ ├── ngx_atomic.h │ ├── ngx_dlopen.c │ ├── ngx_dlopen.h │ ├── ngx_errno.c │ ├── ngx_errno.h │ ├── ngx_event_log.c │ ├── ngx_files.c │ ├── ngx_files.h │ ├── ngx_os.h │ ├── ngx_process.c │ ├── ngx_process.h │ ├── ngx_process_cycle.c │ ├── ngx_process_cycle.h │ ├── ngx_service.c │ ├── ngx_shmem.c │ ├── ngx_shmem.h │ ├── ngx_socket.c │ ├── ngx_socket.h │ ├── ngx_stat.c │ ├── ngx_thread.c │ ├── ngx_thread.h │ ├── ngx_time.c │ ├── ngx_time.h │ ├── ngx_udp_wsarecv.c │ ├── ngx_user.c │ ├── ngx_user.h │ ├── ngx_win32_config.h │ ├── ngx_win32_init.c │ ├── ngx_wsarecv.c │ ├── ngx_wsarecv_chain.c │ ├── ngx_wsasend.c │ └── ngx_wsasend_chain.c └── stream ├── ngx_stream.c ├── ngx_stream.h ├── ngx_stream_access_module.c ├── ngx_stream_core_module.c ├── ngx_stream_handler.c ├── ngx_stream_limit_conn_module.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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/aes.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/applink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/applink.c -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/asn1.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/asn1t.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/bio.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/blowfish.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/bn.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/buffer.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/camellia.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/cast.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/cmac.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/cms.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/comp.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/conf.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/conf_api.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/crypto.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/des.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/des_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/des_old.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/dh.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/dsa.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/dso.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/dtls1.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/e_os2.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/ec.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/ecdh.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/engine.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/err.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/evp.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/hmac.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/idea.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/krb5_asn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/krb5_asn.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/kssl.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/lhash.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/md4.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/md5.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/mdc2.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/modes.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/objects.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/ocsp.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/opensslconf.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/opensslv.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/pem.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/pem2.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/pqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/pqueue.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/rand.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/rc2.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/rc4.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/ripemd.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/rsa.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/safestack.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/seed.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/sha.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/srp.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/srtp.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/ssl.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/ssl2.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/ssl23.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/ssl3.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/stack.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/symhacks.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/tls1.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/ts.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/txt_db.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/ui.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/ui_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/ui_compat.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/whrlpool.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/x509.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /3rdparty/openssl/include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/include/openssl/x509v3.h -------------------------------------------------------------------------------- /3rdparty/openssl/lib/x86/libeay32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/lib/x86/libeay32.lib -------------------------------------------------------------------------------- /3rdparty/openssl/lib/x86/ssleay32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/openssl/lib/x86/ssleay32.lib -------------------------------------------------------------------------------- /3rdparty/zlib/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/zlib/include/zconf.h -------------------------------------------------------------------------------- /3rdparty/zlib/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/zlib/include/zlib.h -------------------------------------------------------------------------------- /3rdparty/zlib/lib/x86/zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/3rdparty/zlib/lib/x86/zlib.lib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/README.md -------------------------------------------------------------------------------- /env.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/env.7z -------------------------------------------------------------------------------- /nginx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx.sln -------------------------------------------------------------------------------- /nginx/core/nginx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/nginx.c -------------------------------------------------------------------------------- /nginx/core/nginx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/nginx.h -------------------------------------------------------------------------------- /nginx/core/ngx_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_array.c -------------------------------------------------------------------------------- /nginx/core/ngx_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_array.h -------------------------------------------------------------------------------- /nginx/core/ngx_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_buf.c -------------------------------------------------------------------------------- /nginx/core/ngx_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_buf.h -------------------------------------------------------------------------------- /nginx/core/ngx_conf_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_conf_file.c -------------------------------------------------------------------------------- /nginx/core/ngx_conf_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_conf_file.h -------------------------------------------------------------------------------- /nginx/core/ngx_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_config.h -------------------------------------------------------------------------------- /nginx/core/ngx_connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_connection.c -------------------------------------------------------------------------------- /nginx/core/ngx_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_connection.h -------------------------------------------------------------------------------- /nginx/core/ngx_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_core.h -------------------------------------------------------------------------------- /nginx/core/ngx_cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_cpuinfo.c -------------------------------------------------------------------------------- /nginx/core/ngx_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_crc.h -------------------------------------------------------------------------------- /nginx/core/ngx_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_crc32.c -------------------------------------------------------------------------------- /nginx/core/ngx_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_crc32.h -------------------------------------------------------------------------------- /nginx/core/ngx_crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_crypt.c -------------------------------------------------------------------------------- /nginx/core/ngx_crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_crypt.h -------------------------------------------------------------------------------- /nginx/core/ngx_cycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_cycle.c -------------------------------------------------------------------------------- /nginx/core/ngx_cycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_cycle.h -------------------------------------------------------------------------------- /nginx/core/ngx_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_file.c -------------------------------------------------------------------------------- /nginx/core/ngx_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_file.h -------------------------------------------------------------------------------- /nginx/core/ngx_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_hash.c -------------------------------------------------------------------------------- /nginx/core/ngx_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_hash.h -------------------------------------------------------------------------------- /nginx/core/ngx_inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_inet.c -------------------------------------------------------------------------------- /nginx/core/ngx_inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_inet.h -------------------------------------------------------------------------------- /nginx/core/ngx_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_list.c -------------------------------------------------------------------------------- /nginx/core/ngx_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_list.h -------------------------------------------------------------------------------- /nginx/core/ngx_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_log.c -------------------------------------------------------------------------------- /nginx/core/ngx_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_log.h -------------------------------------------------------------------------------- /nginx/core/ngx_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_md5.c -------------------------------------------------------------------------------- /nginx/core/ngx_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_md5.h -------------------------------------------------------------------------------- /nginx/core/ngx_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_module.c -------------------------------------------------------------------------------- /nginx/core/ngx_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_module.h -------------------------------------------------------------------------------- /nginx/core/ngx_murmurhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_murmurhash.c -------------------------------------------------------------------------------- /nginx/core/ngx_murmurhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_murmurhash.h -------------------------------------------------------------------------------- /nginx/core/ngx_open_file_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_open_file_cache.c -------------------------------------------------------------------------------- /nginx/core/ngx_open_file_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_open_file_cache.h -------------------------------------------------------------------------------- /nginx/core/ngx_output_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_output_chain.c -------------------------------------------------------------------------------- /nginx/core/ngx_palloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_palloc.c -------------------------------------------------------------------------------- /nginx/core/ngx_palloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_palloc.h -------------------------------------------------------------------------------- /nginx/core/ngx_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_parse.c -------------------------------------------------------------------------------- /nginx/core/ngx_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_parse.h -------------------------------------------------------------------------------- /nginx/core/ngx_parse_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_parse_time.c -------------------------------------------------------------------------------- /nginx/core/ngx_parse_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_parse_time.h -------------------------------------------------------------------------------- /nginx/core/ngx_proxy_protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_proxy_protocol.c -------------------------------------------------------------------------------- /nginx/core/ngx_proxy_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_proxy_protocol.h -------------------------------------------------------------------------------- /nginx/core/ngx_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_queue.c -------------------------------------------------------------------------------- /nginx/core/ngx_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_queue.h -------------------------------------------------------------------------------- /nginx/core/ngx_radix_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_radix_tree.c -------------------------------------------------------------------------------- /nginx/core/ngx_radix_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_radix_tree.h -------------------------------------------------------------------------------- /nginx/core/ngx_rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_rbtree.c -------------------------------------------------------------------------------- /nginx/core/ngx_rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_rbtree.h -------------------------------------------------------------------------------- /nginx/core/ngx_regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_regex.c -------------------------------------------------------------------------------- /nginx/core/ngx_regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_regex.h -------------------------------------------------------------------------------- /nginx/core/ngx_resolver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_resolver.c -------------------------------------------------------------------------------- /nginx/core/ngx_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_resolver.h -------------------------------------------------------------------------------- /nginx/core/ngx_rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_rwlock.c -------------------------------------------------------------------------------- /nginx/core/ngx_rwlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_rwlock.h -------------------------------------------------------------------------------- /nginx/core/ngx_sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_sha1.h -------------------------------------------------------------------------------- /nginx/core/ngx_shmtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_shmtx.c -------------------------------------------------------------------------------- /nginx/core/ngx_shmtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_shmtx.h -------------------------------------------------------------------------------- /nginx/core/ngx_slab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_slab.c -------------------------------------------------------------------------------- /nginx/core/ngx_slab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_slab.h -------------------------------------------------------------------------------- /nginx/core/ngx_spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_spinlock.c -------------------------------------------------------------------------------- /nginx/core/ngx_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_string.c -------------------------------------------------------------------------------- /nginx/core/ngx_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_string.h -------------------------------------------------------------------------------- /nginx/core/ngx_syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_syslog.c -------------------------------------------------------------------------------- /nginx/core/ngx_syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_syslog.h -------------------------------------------------------------------------------- /nginx/core/ngx_thread_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_thread_pool.c -------------------------------------------------------------------------------- /nginx/core/ngx_thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_thread_pool.h -------------------------------------------------------------------------------- /nginx/core/ngx_times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_times.c -------------------------------------------------------------------------------- /nginx/core/ngx_times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/core/ngx_times.h -------------------------------------------------------------------------------- /nginx/event/modules/ngx_devpoll_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/modules/ngx_devpoll_module.c -------------------------------------------------------------------------------- /nginx/event/modules/ngx_epoll_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/modules/ngx_epoll_module.c -------------------------------------------------------------------------------- /nginx/event/modules/ngx_eventport_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/modules/ngx_eventport_module.c -------------------------------------------------------------------------------- /nginx/event/modules/ngx_iocp_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/modules/ngx_iocp_module.c -------------------------------------------------------------------------------- /nginx/event/modules/ngx_iocp_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/modules/ngx_iocp_module.h -------------------------------------------------------------------------------- /nginx/event/modules/ngx_kqueue_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/modules/ngx_kqueue_module.c -------------------------------------------------------------------------------- /nginx/event/modules/ngx_poll_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/modules/ngx_poll_module.c -------------------------------------------------------------------------------- /nginx/event/modules/ngx_select_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/modules/ngx_select_module.c -------------------------------------------------------------------------------- /nginx/event/modules/ngx_win32_select_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/modules/ngx_win32_select_module.c -------------------------------------------------------------------------------- /nginx/event/ngx_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/ngx_event.c -------------------------------------------------------------------------------- /nginx/event/ngx_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/ngx_event.h -------------------------------------------------------------------------------- /nginx/event/ngx_event_accept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/ngx_event_accept.c -------------------------------------------------------------------------------- /nginx/event/ngx_event_acceptex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/ngx_event_acceptex.c -------------------------------------------------------------------------------- /nginx/event/ngx_event_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/ngx_event_connect.c -------------------------------------------------------------------------------- /nginx/event/ngx_event_connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/ngx_event_connect.h -------------------------------------------------------------------------------- /nginx/event/ngx_event_connectex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/ngx_event_connectex.c -------------------------------------------------------------------------------- /nginx/event/ngx_event_openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/ngx_event_openssl.c -------------------------------------------------------------------------------- /nginx/event/ngx_event_openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/ngx_event_openssl.h -------------------------------------------------------------------------------- /nginx/event/ngx_event_openssl_stapling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/ngx_event_openssl_stapling.c -------------------------------------------------------------------------------- /nginx/event/ngx_event_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/ngx_event_pipe.c -------------------------------------------------------------------------------- /nginx/event/ngx_event_pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/ngx_event_pipe.h -------------------------------------------------------------------------------- /nginx/event/ngx_event_posted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/ngx_event_posted.c -------------------------------------------------------------------------------- /nginx/event/ngx_event_posted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/ngx_event_posted.h -------------------------------------------------------------------------------- /nginx/event/ngx_event_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/ngx_event_timer.c -------------------------------------------------------------------------------- /nginx/event/ngx_event_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/event/ngx_event_timer.h -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_access_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_access_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_addition_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_addition_filter_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_auth_basic_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_auth_basic_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_auth_request_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_auth_request_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_autoindex_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_autoindex_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_browser_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_browser_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_charset_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_charset_filter_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_chunked_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_chunked_filter_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_dav_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_dav_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_degradation_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_degradation_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_empty_gif_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_empty_gif_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_fastcgi_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_fastcgi_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_flv_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_flv_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_geo_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_geo_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_geoip_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_geoip_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_gunzip_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_gunzip_filter_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_gzip_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_gzip_filter_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_gzip_static_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_gzip_static_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_headers_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_headers_filter_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_image_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_image_filter_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_index_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_index_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_limit_conn_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_limit_conn_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_limit_req_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_limit_req_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_log_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_log_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_map_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_map_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_memcached_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_memcached_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_mp4_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_mp4_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_not_modified_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_not_modified_filter_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_proxy_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_proxy_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_random_index_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_random_index_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_range_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_range_filter_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_realip_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_realip_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_referer_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_referer_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_rewrite_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_rewrite_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_scgi_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_scgi_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_secure_link_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_secure_link_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_slice_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_slice_filter_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_split_clients_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_split_clients_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_ssi_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_ssi_filter_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_ssi_filter_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_ssi_filter_module.h -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_ssl_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_ssl_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_ssl_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_ssl_module.h -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_static_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_static_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_stub_status_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_stub_status_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_sub_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_sub_filter_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_upstream_hash_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_upstream_hash_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_upstream_ip_hash_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_upstream_ip_hash_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_upstream_keepalive_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_upstream_keepalive_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_upstream_least_conn_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_upstream_least_conn_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_upstream_zone_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_upstream_zone_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_userid_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_userid_filter_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_uwsgi_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_uwsgi_module.c -------------------------------------------------------------------------------- /nginx/http/modules/ngx_http_xslt_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/ngx_http_xslt_filter_module.c -------------------------------------------------------------------------------- /nginx/http/modules/perl/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/perl/Makefile.PL -------------------------------------------------------------------------------- /nginx/http/modules/perl/nginx.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/perl/nginx.pm -------------------------------------------------------------------------------- /nginx/http/modules/perl/nginx.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/perl/nginx.xs -------------------------------------------------------------------------------- /nginx/http/modules/perl/ngx_http_perl_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/perl/ngx_http_perl_module.c -------------------------------------------------------------------------------- /nginx/http/modules/perl/ngx_http_perl_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/modules/perl/ngx_http_perl_module.h -------------------------------------------------------------------------------- /nginx/http/modules/perl/typemap: -------------------------------------------------------------------------------- 1 | TYPEMAP 2 | 3 | nginx T_PTROBJ 4 | -------------------------------------------------------------------------------- /nginx/http/ngx_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http.c -------------------------------------------------------------------------------- /nginx/http/ngx_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http.h -------------------------------------------------------------------------------- /nginx/http/ngx_http_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http_cache.h -------------------------------------------------------------------------------- /nginx/http/ngx_http_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http_config.h -------------------------------------------------------------------------------- /nginx/http/ngx_http_copy_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http_copy_filter_module.c -------------------------------------------------------------------------------- /nginx/http/ngx_http_core_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http_core_module.c -------------------------------------------------------------------------------- /nginx/http/ngx_http_core_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http_core_module.h -------------------------------------------------------------------------------- /nginx/http/ngx_http_file_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http_file_cache.c -------------------------------------------------------------------------------- /nginx/http/ngx_http_header_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http_header_filter_module.c -------------------------------------------------------------------------------- /nginx/http/ngx_http_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http_parse.c -------------------------------------------------------------------------------- /nginx/http/ngx_http_postpone_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http_postpone_filter_module.c -------------------------------------------------------------------------------- /nginx/http/ngx_http_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http_request.c -------------------------------------------------------------------------------- /nginx/http/ngx_http_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http_request.h -------------------------------------------------------------------------------- /nginx/http/ngx_http_request_body.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http_request_body.c -------------------------------------------------------------------------------- /nginx/http/ngx_http_script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http_script.c -------------------------------------------------------------------------------- /nginx/http/ngx_http_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http_script.h -------------------------------------------------------------------------------- /nginx/http/ngx_http_special_response.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http_special_response.c -------------------------------------------------------------------------------- /nginx/http/ngx_http_upstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http_upstream.c -------------------------------------------------------------------------------- /nginx/http/ngx_http_upstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http_upstream.h -------------------------------------------------------------------------------- /nginx/http/ngx_http_upstream_round_robin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http_upstream_round_robin.c -------------------------------------------------------------------------------- /nginx/http/ngx_http_upstream_round_robin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http_upstream_round_robin.h -------------------------------------------------------------------------------- /nginx/http/ngx_http_variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http_variables.c -------------------------------------------------------------------------------- /nginx/http/ngx_http_variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http_variables.h -------------------------------------------------------------------------------- /nginx/http/ngx_http_write_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/ngx_http_write_filter_module.c -------------------------------------------------------------------------------- /nginx/http/v2/ngx_http_v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/v2/ngx_http_v2.c -------------------------------------------------------------------------------- /nginx/http/v2/ngx_http_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/v2/ngx_http_v2.h -------------------------------------------------------------------------------- /nginx/http/v2/ngx_http_v2_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/v2/ngx_http_v2_filter_module.c -------------------------------------------------------------------------------- /nginx/http/v2/ngx_http_v2_huff_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/v2/ngx_http_v2_huff_decode.c -------------------------------------------------------------------------------- /nginx/http/v2/ngx_http_v2_huff_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/v2/ngx_http_v2_huff_encode.c -------------------------------------------------------------------------------- /nginx/http/v2/ngx_http_v2_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/v2/ngx_http_v2_module.c -------------------------------------------------------------------------------- /nginx/http/v2/ngx_http_v2_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/v2/ngx_http_v2_module.h -------------------------------------------------------------------------------- /nginx/http/v2/ngx_http_v2_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/http/v2/ngx_http_v2_table.c -------------------------------------------------------------------------------- /nginx/mail/ngx_mail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/mail/ngx_mail.c -------------------------------------------------------------------------------- /nginx/mail/ngx_mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/mail/ngx_mail.h -------------------------------------------------------------------------------- /nginx/mail/ngx_mail_auth_http_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/mail/ngx_mail_auth_http_module.c -------------------------------------------------------------------------------- /nginx/mail/ngx_mail_core_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/mail/ngx_mail_core_module.c -------------------------------------------------------------------------------- /nginx/mail/ngx_mail_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/mail/ngx_mail_handler.c -------------------------------------------------------------------------------- /nginx/mail/ngx_mail_imap_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/mail/ngx_mail_imap_handler.c -------------------------------------------------------------------------------- /nginx/mail/ngx_mail_imap_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/mail/ngx_mail_imap_module.c -------------------------------------------------------------------------------- /nginx/mail/ngx_mail_imap_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/mail/ngx_mail_imap_module.h -------------------------------------------------------------------------------- /nginx/mail/ngx_mail_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/mail/ngx_mail_parse.c -------------------------------------------------------------------------------- /nginx/mail/ngx_mail_pop3_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/mail/ngx_mail_pop3_handler.c -------------------------------------------------------------------------------- /nginx/mail/ngx_mail_pop3_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/mail/ngx_mail_pop3_module.c -------------------------------------------------------------------------------- /nginx/mail/ngx_mail_pop3_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/mail/ngx_mail_pop3_module.h -------------------------------------------------------------------------------- /nginx/mail/ngx_mail_proxy_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/mail/ngx_mail_proxy_module.c -------------------------------------------------------------------------------- /nginx/mail/ngx_mail_smtp_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/mail/ngx_mail_smtp_handler.c -------------------------------------------------------------------------------- /nginx/mail/ngx_mail_smtp_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/mail/ngx_mail_smtp_module.c -------------------------------------------------------------------------------- /nginx/mail/ngx_mail_smtp_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/mail/ngx_mail_smtp_module.h -------------------------------------------------------------------------------- /nginx/mail/ngx_mail_ssl_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/mail/ngx_mail_ssl_module.c -------------------------------------------------------------------------------- /nginx/mail/ngx_mail_ssl_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/mail/ngx_mail_ssl_module.h -------------------------------------------------------------------------------- /nginx/misc/ngx_cpp_test_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/misc/ngx_cpp_test_module.cpp -------------------------------------------------------------------------------- /nginx/misc/ngx_google_perftools_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/misc/ngx_google_perftools_module.c -------------------------------------------------------------------------------- /nginx/nginx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/nginx.vcxproj -------------------------------------------------------------------------------- /nginx/nginx.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/nginx.vcxproj.filters -------------------------------------------------------------------------------- /nginx/nginx.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/nginx.vcxproj.user -------------------------------------------------------------------------------- /nginx/ngx_auto_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/ngx_auto_config.h -------------------------------------------------------------------------------- /nginx/ngx_auto_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/ngx_auto_headers.h -------------------------------------------------------------------------------- /nginx/ngx_modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/ngx_modules.c -------------------------------------------------------------------------------- /nginx/ngx_pch.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /nginx/os/unix/ngx_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_alloc.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_alloc.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_atomic.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_channel.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_channel.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_daemon.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_darwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_darwin.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_darwin_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_darwin_config.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_darwin_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_darwin_init.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_darwin_sendfile_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_darwin_sendfile_chain.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_dlopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_dlopen.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_dlopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_dlopen.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_errno.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_errno.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_file_aio_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_file_aio_read.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_files.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_files.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_freebsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_freebsd.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_freebsd_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_freebsd_config.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_freebsd_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_freebsd_init.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_freebsd_sendfile_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_freebsd_sendfile_chain.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_gcc_atomic_amd64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_gcc_atomic_amd64.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_gcc_atomic_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_gcc_atomic_ppc.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_gcc_atomic_sparc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_gcc_atomic_sparc64.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_gcc_atomic_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_gcc_atomic_x86.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_linux.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_linux_aio_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_linux_aio_read.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_linux_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_linux_config.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_linux_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_linux_init.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_linux_sendfile_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_linux_sendfile_chain.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_os.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_posix_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_posix_config.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_posix_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_posix_init.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_process.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_process.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_process_cycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_process_cycle.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_process_cycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_process_cycle.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_readv_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_readv_chain.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_recv.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_send.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_setaffinity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_setaffinity.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_setaffinity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_setaffinity.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_setproctitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_setproctitle.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_setproctitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_setproctitle.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_shmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_shmem.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_shmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_shmem.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_socket.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_socket.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_solaris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_solaris.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_solaris_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_solaris_config.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_solaris_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_solaris_init.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_solaris_sendfilev_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_solaris_sendfilev_chain.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_sunpro_amd64.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_sunpro_amd64.il -------------------------------------------------------------------------------- /nginx/os/unix/ngx_sunpro_atomic_sparc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_sunpro_atomic_sparc64.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_sunpro_sparc64.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_sunpro_sparc64.il -------------------------------------------------------------------------------- /nginx/os/unix/ngx_sunpro_x86.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_sunpro_x86.il -------------------------------------------------------------------------------- /nginx/os/unix/ngx_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_thread.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_thread_cond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_thread_cond.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_thread_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_thread_id.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_thread_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_thread_mutex.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_time.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_time.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_udp_recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_udp_recv.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_udp_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_udp_send.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_user.c -------------------------------------------------------------------------------- /nginx/os/unix/ngx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_user.h -------------------------------------------------------------------------------- /nginx/os/unix/ngx_writev_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/unix/ngx_writev_chain.c -------------------------------------------------------------------------------- /nginx/os/win32/nginx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/nginx.ico -------------------------------------------------------------------------------- /nginx/os/win32/nginx.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/nginx.rc -------------------------------------------------------------------------------- /nginx/os/win32/nginx_icon16.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/nginx_icon16.xpm -------------------------------------------------------------------------------- /nginx/os/win32/nginx_icon32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/nginx_icon32.xpm -------------------------------------------------------------------------------- /nginx/os/win32/nginx_icon48.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/nginx_icon48.xpm -------------------------------------------------------------------------------- /nginx/os/win32/ngx_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_alloc.c -------------------------------------------------------------------------------- /nginx/os/win32/ngx_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_alloc.h -------------------------------------------------------------------------------- /nginx/os/win32/ngx_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_atomic.h -------------------------------------------------------------------------------- /nginx/os/win32/ngx_dlopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_dlopen.c -------------------------------------------------------------------------------- /nginx/os/win32/ngx_dlopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_dlopen.h -------------------------------------------------------------------------------- /nginx/os/win32/ngx_errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_errno.c -------------------------------------------------------------------------------- /nginx/os/win32/ngx_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_errno.h -------------------------------------------------------------------------------- /nginx/os/win32/ngx_event_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_event_log.c -------------------------------------------------------------------------------- /nginx/os/win32/ngx_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_files.c -------------------------------------------------------------------------------- /nginx/os/win32/ngx_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_files.h -------------------------------------------------------------------------------- /nginx/os/win32/ngx_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_os.h -------------------------------------------------------------------------------- /nginx/os/win32/ngx_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_process.c -------------------------------------------------------------------------------- /nginx/os/win32/ngx_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_process.h -------------------------------------------------------------------------------- /nginx/os/win32/ngx_process_cycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_process_cycle.c -------------------------------------------------------------------------------- /nginx/os/win32/ngx_process_cycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_process_cycle.h -------------------------------------------------------------------------------- /nginx/os/win32/ngx_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_service.c -------------------------------------------------------------------------------- /nginx/os/win32/ngx_shmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_shmem.c -------------------------------------------------------------------------------- /nginx/os/win32/ngx_shmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_shmem.h -------------------------------------------------------------------------------- /nginx/os/win32/ngx_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_socket.c -------------------------------------------------------------------------------- /nginx/os/win32/ngx_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_socket.h -------------------------------------------------------------------------------- /nginx/os/win32/ngx_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_stat.c -------------------------------------------------------------------------------- /nginx/os/win32/ngx_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_thread.c -------------------------------------------------------------------------------- /nginx/os/win32/ngx_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_thread.h -------------------------------------------------------------------------------- /nginx/os/win32/ngx_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_time.c -------------------------------------------------------------------------------- /nginx/os/win32/ngx_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_time.h -------------------------------------------------------------------------------- /nginx/os/win32/ngx_udp_wsarecv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_udp_wsarecv.c -------------------------------------------------------------------------------- /nginx/os/win32/ngx_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_user.c -------------------------------------------------------------------------------- /nginx/os/win32/ngx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_user.h -------------------------------------------------------------------------------- /nginx/os/win32/ngx_win32_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_win32_config.h -------------------------------------------------------------------------------- /nginx/os/win32/ngx_win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_win32_init.c -------------------------------------------------------------------------------- /nginx/os/win32/ngx_wsarecv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_wsarecv.c -------------------------------------------------------------------------------- /nginx/os/win32/ngx_wsarecv_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_wsarecv_chain.c -------------------------------------------------------------------------------- /nginx/os/win32/ngx_wsasend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_wsasend.c -------------------------------------------------------------------------------- /nginx/os/win32/ngx_wsasend_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/os/win32/ngx_wsasend_chain.c -------------------------------------------------------------------------------- /nginx/stream/ngx_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/stream/ngx_stream.c -------------------------------------------------------------------------------- /nginx/stream/ngx_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/stream/ngx_stream.h -------------------------------------------------------------------------------- /nginx/stream/ngx_stream_access_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/stream/ngx_stream_access_module.c -------------------------------------------------------------------------------- /nginx/stream/ngx_stream_core_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/stream/ngx_stream_core_module.c -------------------------------------------------------------------------------- /nginx/stream/ngx_stream_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/stream/ngx_stream_handler.c -------------------------------------------------------------------------------- /nginx/stream/ngx_stream_limit_conn_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/stream/ngx_stream_limit_conn_module.c -------------------------------------------------------------------------------- /nginx/stream/ngx_stream_proxy_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/stream/ngx_stream_proxy_module.c -------------------------------------------------------------------------------- /nginx/stream/ngx_stream_ssl_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/stream/ngx_stream_ssl_module.c -------------------------------------------------------------------------------- /nginx/stream/ngx_stream_ssl_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/stream/ngx_stream_ssl_module.h -------------------------------------------------------------------------------- /nginx/stream/ngx_stream_upstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/stream/ngx_stream_upstream.c -------------------------------------------------------------------------------- /nginx/stream/ngx_stream_upstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/stream/ngx_stream_upstream.h -------------------------------------------------------------------------------- /nginx/stream/ngx_stream_upstream_hash_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/stream/ngx_stream_upstream_hash_module.c -------------------------------------------------------------------------------- /nginx/stream/ngx_stream_upstream_least_conn_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/stream/ngx_stream_upstream_least_conn_module.c -------------------------------------------------------------------------------- /nginx/stream/ngx_stream_upstream_round_robin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/stream/ngx_stream_upstream_round_robin.c -------------------------------------------------------------------------------- /nginx/stream/ngx_stream_upstream_round_robin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/stream/ngx_stream_upstream_round_robin.h -------------------------------------------------------------------------------- /nginx/stream/ngx_stream_upstream_zone_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purecpp-org/nginx_vs/HEAD/nginx/stream/ngx_stream_upstream_zone_module.c --------------------------------------------------------------------------------