Integrate TLDK with NGINX 53/9153/1
authorKonstantin Ananyev <konstantin.ananyev@intel.com>
Tue, 31 Oct 2017 12:40:17 +0000 (12:40 +0000)
committerKonstantin Ananyev <konstantin.ananyev@intel.com>
Tue, 31 Oct 2017 14:19:39 +0000 (14:19 +0000)
commite18a033b921d0d79fa8278f853548e6125b93e0c
treea6a55edf6ddceef824561818c9836914c326340d
parent7e18fa1bf263822c46d7431a911b41d6377d5f69
Integrate TLDK with NGINX

Created a clone of nginx (from https://github.com/nginx/nginx)
to demonstrate and benchmark TLDK library integrated with real
world application.
A new nginx module is created and and BSD socket-like API is implemented
on top of native TLDK API.
Note, that right now only minimalistic subset of socket-like API is provided:
- accept
- close
- readv
- recv
- writev
so only limited nginx functionality is available for a moment.

Change-Id: Ie1efe9349a0538da4348a48fb8306cbf636b5a92
Signed-off-by: Mohammad Abdul Awal <mohammad.abdul.awal@intel.com>
Signed-off-by: Reshma Pattan <reshma.pattan@intel.com>
Signed-off-by: Remy Horton <remy.horton@intel.com>
Signed-off-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
457 files changed:
README
app/nginx/.hgtags [new file with mode: 0644]
app/nginx/LICENSE [new file with mode: 0644]
app/nginx/README.TLDK [new file with mode: 0644]
app/nginx/auto/cc/acc [new file with mode: 0644]
app/nginx/auto/cc/bcc [new file with mode: 0644]
app/nginx/auto/cc/ccc [new file with mode: 0644]
app/nginx/auto/cc/clang [new file with mode: 0644]
app/nginx/auto/cc/conf [new file with mode: 0644]
app/nginx/auto/cc/gcc [new file with mode: 0644]
app/nginx/auto/cc/icc [new file with mode: 0644]
app/nginx/auto/cc/msvc [new file with mode: 0644]
app/nginx/auto/cc/name [new file with mode: 0644]
app/nginx/auto/cc/owc [new file with mode: 0644]
app/nginx/auto/cc/sunc [new file with mode: 0644]
app/nginx/auto/configure [new file with mode: 0755]
app/nginx/auto/define [new file with mode: 0644]
app/nginx/auto/endianness [new file with mode: 0644]
app/nginx/auto/feature [new file with mode: 0644]
app/nginx/auto/have [new file with mode: 0644]
app/nginx/auto/have_headers [new file with mode: 0644]
app/nginx/auto/headers [new file with mode: 0644]
app/nginx/auto/include [new file with mode: 0644]
app/nginx/auto/init [new file with mode: 0644]
app/nginx/auto/install [new file with mode: 0644]
app/nginx/auto/lib/conf [new file with mode: 0644]
app/nginx/auto/lib/geoip/conf [new file with mode: 0644]
app/nginx/auto/lib/google-perftools/conf [new file with mode: 0644]
app/nginx/auto/lib/libatomic/conf [new file with mode: 0644]
app/nginx/auto/lib/libatomic/make [new file with mode: 0644]
app/nginx/auto/lib/libgd/conf [new file with mode: 0644]
app/nginx/auto/lib/libxslt/conf [new file with mode: 0644]
app/nginx/auto/lib/make [new file with mode: 0644]
app/nginx/auto/lib/openssl/conf [new file with mode: 0644]
app/nginx/auto/lib/openssl/make [new file with mode: 0644]
app/nginx/auto/lib/openssl/makefile.bcc [new file with mode: 0644]
app/nginx/auto/lib/openssl/makefile.msvc [new file with mode: 0644]
app/nginx/auto/lib/pcre/conf [new file with mode: 0644]
app/nginx/auto/lib/pcre/make [new file with mode: 0644]
app/nginx/auto/lib/pcre/makefile.bcc [new file with mode: 0644]
app/nginx/auto/lib/pcre/makefile.msvc [new file with mode: 0644]
app/nginx/auto/lib/pcre/makefile.owc [new file with mode: 0644]
app/nginx/auto/lib/perl/conf [new file with mode: 0644]
app/nginx/auto/lib/perl/make [new file with mode: 0644]
app/nginx/auto/lib/zlib/conf [new file with mode: 0644]
app/nginx/auto/lib/zlib/make [new file with mode: 0644]
app/nginx/auto/lib/zlib/makefile.bcc [new file with mode: 0644]
app/nginx/auto/lib/zlib/makefile.msvc [new file with mode: 0644]
app/nginx/auto/lib/zlib/makefile.owc [new file with mode: 0644]
app/nginx/auto/make [new file with mode: 0644]
app/nginx/auto/module [new file with mode: 0644]
app/nginx/auto/modules [new file with mode: 0644]
app/nginx/auto/nohave [new file with mode: 0644]
app/nginx/auto/options [new file with mode: 0644]
app/nginx/auto/os/conf [new file with mode: 0644]
app/nginx/auto/os/darwin [new file with mode: 0644]
app/nginx/auto/os/freebsd [new file with mode: 0644]
app/nginx/auto/os/linux [new file with mode: 0644]
app/nginx/auto/os/solaris [new file with mode: 0644]
app/nginx/auto/os/win32 [new file with mode: 0644]
app/nginx/auto/sources [new file with mode: 0644]
app/nginx/auto/stubs [new file with mode: 0644]
app/nginx/auto/summary [new file with mode: 0644]
app/nginx/auto/threads [new file with mode: 0644]
app/nginx/auto/types/sizeof [new file with mode: 0644]
app/nginx/auto/types/typedef [new file with mode: 0644]
app/nginx/auto/types/uintptr_t [new file with mode: 0644]
app/nginx/auto/types/value [new file with mode: 0644]
app/nginx/auto/unix [new file with mode: 0644]
app/nginx/conf/fastcgi.conf [new file with mode: 0644]
app/nginx/conf/fastcgi_params [new file with mode: 0644]
app/nginx/conf/koi-utf [new file with mode: 0644]
app/nginx/conf/koi-win [new file with mode: 0644]
app/nginx/conf/mime.types [new file with mode: 0644]
app/nginx/conf/nginx-tldk.conf [new file with mode: 0644]
app/nginx/conf/nginx.conf [new file with mode: 0644]
app/nginx/conf/scgi_params [new file with mode: 0644]
app/nginx/conf/uwsgi_params [new file with mode: 0644]
app/nginx/conf/win-utf [new file with mode: 0644]
app/nginx/contrib/README [new file with mode: 0644]
app/nginx/contrib/geo2nginx.pl [new file with mode: 0644]
app/nginx/contrib/unicode2nginx/koi-utf [new file with mode: 0644]
app/nginx/contrib/unicode2nginx/unicode-to-nginx.pl [new file with mode: 0755]
app/nginx/contrib/unicode2nginx/win-utf [new file with mode: 0644]
app/nginx/contrib/vim/ftdetect/nginx.vim [new file with mode: 0644]
app/nginx/contrib/vim/ftplugin/nginx.vim [new file with mode: 0644]
app/nginx/contrib/vim/indent/nginx.vim [new file with mode: 0644]
app/nginx/contrib/vim/syntax/nginx.vim [new file with mode: 0644]
app/nginx/docs/GNUmakefile [new file with mode: 0644]
app/nginx/docs/dtd/change_log_conf.dtd [new file with mode: 0644]
app/nginx/docs/dtd/changes.dtd [new file with mode: 0644]
app/nginx/docs/html/50x.html [new file with mode: 0644]
app/nginx/docs/html/index.html [new file with mode: 0644]
app/nginx/docs/man/nginx.8 [new file with mode: 0644]
app/nginx/docs/text/LICENSE [new file with mode: 0644]
app/nginx/docs/text/README [new file with mode: 0644]
app/nginx/docs/xml/change_log_conf.xml [new file with mode: 0644]
app/nginx/docs/xml/nginx/changes.xml [new file with mode: 0644]
app/nginx/docs/xsls/changes.xsls [new file with mode: 0644]
app/nginx/docs/xslt/changes.xslt [new file with mode: 0644]
app/nginx/misc/GNUmakefile [new file with mode: 0644]
app/nginx/misc/README [new file with mode: 0644]
app/nginx/src/core/nginx.c [new file with mode: 0644]
app/nginx/src/core/nginx.h [new file with mode: 0644]
app/nginx/src/core/ngx_array.c [new file with mode: 0644]
app/nginx/src/core/ngx_array.h [new file with mode: 0644]
app/nginx/src/core/ngx_buf.c [new file with mode: 0644]
app/nginx/src/core/ngx_buf.h [new file with mode: 0644]
app/nginx/src/core/ngx_conf_file.c [new file with mode: 0644]
app/nginx/src/core/ngx_conf_file.h [new file with mode: 0644]
app/nginx/src/core/ngx_config.h [new file with mode: 0644]
app/nginx/src/core/ngx_connection.c [new file with mode: 0644]
app/nginx/src/core/ngx_connection.h [new file with mode: 0644]
app/nginx/src/core/ngx_core.h [new file with mode: 0644]
app/nginx/src/core/ngx_cpuinfo.c [new file with mode: 0644]
app/nginx/src/core/ngx_crc.h [new file with mode: 0644]
app/nginx/src/core/ngx_crc32.c [new file with mode: 0644]
app/nginx/src/core/ngx_crc32.h [new file with mode: 0644]
app/nginx/src/core/ngx_crypt.c [new file with mode: 0644]
app/nginx/src/core/ngx_crypt.h [new file with mode: 0644]
app/nginx/src/core/ngx_cycle.c [new file with mode: 0644]
app/nginx/src/core/ngx_cycle.h [new file with mode: 0644]
app/nginx/src/core/ngx_file.c [new file with mode: 0644]
app/nginx/src/core/ngx_file.h [new file with mode: 0644]
app/nginx/src/core/ngx_hash.c [new file with mode: 0644]
app/nginx/src/core/ngx_hash.h [new file with mode: 0644]
app/nginx/src/core/ngx_inet.c [new file with mode: 0644]
app/nginx/src/core/ngx_inet.h [new file with mode: 0644]
app/nginx/src/core/ngx_list.c [new file with mode: 0644]
app/nginx/src/core/ngx_list.h [new file with mode: 0644]
app/nginx/src/core/ngx_log.c [new file with mode: 0644]
app/nginx/src/core/ngx_log.h [new file with mode: 0644]
app/nginx/src/core/ngx_md5.c [new file with mode: 0644]
app/nginx/src/core/ngx_md5.h [new file with mode: 0644]
app/nginx/src/core/ngx_module.c [new file with mode: 0644]
app/nginx/src/core/ngx_module.h [new file with mode: 0644]
app/nginx/src/core/ngx_murmurhash.c [new file with mode: 0644]
app/nginx/src/core/ngx_murmurhash.h [new file with mode: 0644]
app/nginx/src/core/ngx_open_file_cache.c [new file with mode: 0644]
app/nginx/src/core/ngx_open_file_cache.h [new file with mode: 0644]
app/nginx/src/core/ngx_output_chain.c [new file with mode: 0644]
app/nginx/src/core/ngx_palloc.c [new file with mode: 0644]
app/nginx/src/core/ngx_palloc.h [new file with mode: 0644]
app/nginx/src/core/ngx_parse.c [new file with mode: 0644]
app/nginx/src/core/ngx_parse.h [new file with mode: 0644]
app/nginx/src/core/ngx_parse_time.c [new file with mode: 0644]
app/nginx/src/core/ngx_parse_time.h [new file with mode: 0644]
app/nginx/src/core/ngx_proxy_protocol.c [new file with mode: 0644]
app/nginx/src/core/ngx_proxy_protocol.h [new file with mode: 0644]
app/nginx/src/core/ngx_queue.c [new file with mode: 0644]
app/nginx/src/core/ngx_queue.h [new file with mode: 0644]
app/nginx/src/core/ngx_radix_tree.c [new file with mode: 0644]
app/nginx/src/core/ngx_radix_tree.h [new file with mode: 0644]
app/nginx/src/core/ngx_rbtree.c [new file with mode: 0644]
app/nginx/src/core/ngx_rbtree.h [new file with mode: 0644]
app/nginx/src/core/ngx_regex.c [new file with mode: 0644]
app/nginx/src/core/ngx_regex.h [new file with mode: 0644]
app/nginx/src/core/ngx_resolver.c [new file with mode: 0644]
app/nginx/src/core/ngx_resolver.h [new file with mode: 0644]
app/nginx/src/core/ngx_rwlock.c [new file with mode: 0644]
app/nginx/src/core/ngx_rwlock.h [new file with mode: 0644]
app/nginx/src/core/ngx_sha1.c [new file with mode: 0644]
app/nginx/src/core/ngx_sha1.h [new file with mode: 0644]
app/nginx/src/core/ngx_shmtx.c [new file with mode: 0644]
app/nginx/src/core/ngx_shmtx.h [new file with mode: 0644]
app/nginx/src/core/ngx_slab.c [new file with mode: 0644]
app/nginx/src/core/ngx_slab.h [new file with mode: 0644]
app/nginx/src/core/ngx_spinlock.c [new file with mode: 0644]
app/nginx/src/core/ngx_string.c [new file with mode: 0644]
app/nginx/src/core/ngx_string.h [new file with mode: 0644]
app/nginx/src/core/ngx_syslog.c [new file with mode: 0644]
app/nginx/src/core/ngx_syslog.h [new file with mode: 0644]
app/nginx/src/core/ngx_thread_pool.c [new file with mode: 0644]
app/nginx/src/core/ngx_thread_pool.h [new file with mode: 0644]
app/nginx/src/core/ngx_times.c [new file with mode: 0644]
app/nginx/src/core/ngx_times.h [new file with mode: 0644]
app/nginx/src/event/modules/ngx_devpoll_module.c [new file with mode: 0644]
app/nginx/src/event/modules/ngx_epoll_module.c [new file with mode: 0644]
app/nginx/src/event/modules/ngx_eventport_module.c [new file with mode: 0644]
app/nginx/src/event/modules/ngx_iocp_module.c [new file with mode: 0644]
app/nginx/src/event/modules/ngx_iocp_module.h [new file with mode: 0644]
app/nginx/src/event/modules/ngx_kqueue_module.c [new file with mode: 0644]
app/nginx/src/event/modules/ngx_poll_module.c [new file with mode: 0644]
app/nginx/src/event/modules/ngx_select_module.c [new file with mode: 0644]
app/nginx/src/event/modules/ngx_win32_select_module.c [new file with mode: 0644]
app/nginx/src/event/ngx_event.c [new file with mode: 0644]
app/nginx/src/event/ngx_event.h [new file with mode: 0644]
app/nginx/src/event/ngx_event_accept.c [new file with mode: 0644]
app/nginx/src/event/ngx_event_acceptex.c [new file with mode: 0644]
app/nginx/src/event/ngx_event_connect.c [new file with mode: 0644]
app/nginx/src/event/ngx_event_connect.h [new file with mode: 0644]
app/nginx/src/event/ngx_event_connectex.c [new file with mode: 0644]
app/nginx/src/event/ngx_event_openssl.c [new file with mode: 0644]
app/nginx/src/event/ngx_event_openssl.h [new file with mode: 0644]
app/nginx/src/event/ngx_event_openssl_stapling.c [new file with mode: 0644]
app/nginx/src/event/ngx_event_pipe.c [new file with mode: 0644]
app/nginx/src/event/ngx_event_pipe.h [new file with mode: 0644]
app/nginx/src/event/ngx_event_posted.c [new file with mode: 0644]
app/nginx/src/event/ngx_event_posted.h [new file with mode: 0644]
app/nginx/src/event/ngx_event_timer.c [new file with mode: 0644]
app/nginx/src/event/ngx_event_timer.h [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_access_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_addition_filter_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_auth_basic_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_auth_request_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_autoindex_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_browser_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_charset_filter_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_chunked_filter_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_dav_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_degradation_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_empty_gif_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_fastcgi_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_flv_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_geo_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_geoip_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_gunzip_filter_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_gzip_filter_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_gzip_static_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_headers_filter_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_image_filter_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_index_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_limit_conn_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_limit_req_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_log_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_map_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_memcached_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_mp4_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_not_modified_filter_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_proxy_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_random_index_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_range_filter_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_realip_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_referer_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_rewrite_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_scgi_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_secure_link_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_slice_filter_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_split_clients_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_ssi_filter_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_ssi_filter_module.h [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_ssl_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_ssl_module.h [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_static_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_stub_status_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_sub_filter_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_upstream_hash_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_upstream_ip_hash_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_upstream_keepalive_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_upstream_least_conn_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_upstream_zone_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_userid_filter_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_uwsgi_module.c [new file with mode: 0644]
app/nginx/src/http/modules/ngx_http_xslt_filter_module.c [new file with mode: 0644]
app/nginx/src/http/modules/perl/Makefile.PL [new file with mode: 0644]
app/nginx/src/http/modules/perl/nginx.pm [new file with mode: 0644]
app/nginx/src/http/modules/perl/nginx.xs [new file with mode: 0644]
app/nginx/src/http/modules/perl/ngx_http_perl_module.c [new file with mode: 0644]
app/nginx/src/http/modules/perl/ngx_http_perl_module.h [new file with mode: 0644]
app/nginx/src/http/modules/perl/typemap [new file with mode: 0644]
app/nginx/src/http/ngx_http.c [new file with mode: 0644]
app/nginx/src/http/ngx_http.h [new file with mode: 0644]
app/nginx/src/http/ngx_http_cache.h [new file with mode: 0644]
app/nginx/src/http/ngx_http_config.h [new file with mode: 0644]
app/nginx/src/http/ngx_http_copy_filter_module.c [new file with mode: 0644]
app/nginx/src/http/ngx_http_core_module.c [new file with mode: 0644]
app/nginx/src/http/ngx_http_core_module.h [new file with mode: 0644]
app/nginx/src/http/ngx_http_file_cache.c [new file with mode: 0644]
app/nginx/src/http/ngx_http_header_filter_module.c [new file with mode: 0644]
app/nginx/src/http/ngx_http_parse.c [new file with mode: 0644]
app/nginx/src/http/ngx_http_postpone_filter_module.c [new file with mode: 0644]
app/nginx/src/http/ngx_http_request.c [new file with mode: 0644]
app/nginx/src/http/ngx_http_request.h [new file with mode: 0644]
app/nginx/src/http/ngx_http_request_body.c [new file with mode: 0644]
app/nginx/src/http/ngx_http_script.c [new file with mode: 0644]
app/nginx/src/http/ngx_http_script.h [new file with mode: 0644]
app/nginx/src/http/ngx_http_special_response.c [new file with mode: 0644]
app/nginx/src/http/ngx_http_upstream.c [new file with mode: 0644]
app/nginx/src/http/ngx_http_upstream.h [new file with mode: 0644]
app/nginx/src/http/ngx_http_upstream_round_robin.c [new file with mode: 0644]
app/nginx/src/http/ngx_http_upstream_round_robin.h [new file with mode: 0644]
app/nginx/src/http/ngx_http_variables.c [new file with mode: 0644]
app/nginx/src/http/ngx_http_variables.h [new file with mode: 0644]
app/nginx/src/http/ngx_http_write_filter_module.c [new file with mode: 0644]
app/nginx/src/http/v2/ngx_http_v2.c [new file with mode: 0644]
app/nginx/src/http/v2/ngx_http_v2.h [new file with mode: 0644]
app/nginx/src/http/v2/ngx_http_v2_filter_module.c [new file with mode: 0644]
app/nginx/src/http/v2/ngx_http_v2_huff_decode.c [new file with mode: 0644]
app/nginx/src/http/v2/ngx_http_v2_huff_encode.c [new file with mode: 0644]
app/nginx/src/http/v2/ngx_http_v2_module.c [new file with mode: 0644]
app/nginx/src/http/v2/ngx_http_v2_module.h [new file with mode: 0644]
app/nginx/src/http/v2/ngx_http_v2_table.c [new file with mode: 0644]
app/nginx/src/mail/ngx_mail.c [new file with mode: 0644]
app/nginx/src/mail/ngx_mail.h [new file with mode: 0644]
app/nginx/src/mail/ngx_mail_auth_http_module.c [new file with mode: 0644]
app/nginx/src/mail/ngx_mail_core_module.c [new file with mode: 0644]
app/nginx/src/mail/ngx_mail_handler.c [new file with mode: 0644]
app/nginx/src/mail/ngx_mail_imap_handler.c [new file with mode: 0644]
app/nginx/src/mail/ngx_mail_imap_module.c [new file with mode: 0644]
app/nginx/src/mail/ngx_mail_imap_module.h [new file with mode: 0644]
app/nginx/src/mail/ngx_mail_parse.c [new file with mode: 0644]
app/nginx/src/mail/ngx_mail_pop3_handler.c [new file with mode: 0644]
app/nginx/src/mail/ngx_mail_pop3_module.c [new file with mode: 0644]
app/nginx/src/mail/ngx_mail_pop3_module.h [new file with mode: 0644]
app/nginx/src/mail/ngx_mail_proxy_module.c [new file with mode: 0644]
app/nginx/src/mail/ngx_mail_smtp_handler.c [new file with mode: 0644]
app/nginx/src/mail/ngx_mail_smtp_module.c [new file with mode: 0644]
app/nginx/src/mail/ngx_mail_smtp_module.h [new file with mode: 0644]
app/nginx/src/mail/ngx_mail_ssl_module.c [new file with mode: 0644]
app/nginx/src/mail/ngx_mail_ssl_module.h [new file with mode: 0644]
app/nginx/src/misc/ngx_cpp_test_module.cpp [new file with mode: 0644]
app/nginx/src/misc/ngx_google_perftools_module.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_alloc.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_alloc.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_atomic.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_channel.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_channel.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_daemon.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_darwin.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_darwin_config.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_darwin_init.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_darwin_sendfile_chain.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_dlopen.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_dlopen.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_errno.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_errno.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_file_aio_read.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_files.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_files.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_freebsd.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_freebsd_config.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_freebsd_init.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_freebsd_sendfile_chain.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_gcc_atomic_amd64.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_gcc_atomic_ppc.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_gcc_atomic_sparc64.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_gcc_atomic_x86.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_linux.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_linux_aio_read.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_linux_config.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_linux_init.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_linux_sendfile_chain.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_os.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_posix_config.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_posix_init.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_process.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_process.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_process_cycle.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_process_cycle.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_readv_chain.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_recv.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_send.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_setaffinity.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_setaffinity.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_setproctitle.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_setproctitle.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_shmem.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_shmem.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_socket.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_socket.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_solaris.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_solaris_config.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_solaris_init.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_solaris_sendfilev_chain.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_sunpro_amd64.il [new file with mode: 0644]
app/nginx/src/os/unix/ngx_sunpro_atomic_sparc64.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_sunpro_sparc64.il [new file with mode: 0644]
app/nginx/src/os/unix/ngx_sunpro_x86.il [new file with mode: 0644]
app/nginx/src/os/unix/ngx_thread.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_thread_cond.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_thread_id.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_thread_mutex.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_time.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_time.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_udp_recv.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_udp_send.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_udp_sendmsg_chain.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_user.c [new file with mode: 0644]
app/nginx/src/os/unix/ngx_user.h [new file with mode: 0644]
app/nginx/src/os/unix/ngx_writev_chain.c [new file with mode: 0644]
app/nginx/src/os/win32/nginx.ico [new file with mode: 0644]
app/nginx/src/os/win32/nginx.rc [new file with mode: 0644]
app/nginx/src/os/win32/nginx_icon16.xpm [new file with mode: 0644]
app/nginx/src/os/win32/nginx_icon32.xpm [new file with mode: 0644]
app/nginx/src/os/win32/nginx_icon48.xpm [new file with mode: 0644]
app/nginx/src/os/win32/ngx_alloc.c [new file with mode: 0644]
app/nginx/src/os/win32/ngx_alloc.h [new file with mode: 0644]
app/nginx/src/os/win32/ngx_atomic.h [new file with mode: 0644]
app/nginx/src/os/win32/ngx_dlopen.c [new file with mode: 0644]
app/nginx/src/os/win32/ngx_dlopen.h [new file with mode: 0644]
app/nginx/src/os/win32/ngx_errno.c [new file with mode: 0644]
app/nginx/src/os/win32/ngx_errno.h [new file with mode: 0644]
app/nginx/src/os/win32/ngx_event_log.c [new file with mode: 0644]
app/nginx/src/os/win32/ngx_files.c [new file with mode: 0644]
app/nginx/src/os/win32/ngx_files.h [new file with mode: 0644]
app/nginx/src/os/win32/ngx_os.h [new file with mode: 0644]
app/nginx/src/os/win32/ngx_process.c [new file with mode: 0644]
app/nginx/src/os/win32/ngx_process.h [new file with mode: 0644]
app/nginx/src/os/win32/ngx_process_cycle.c [new file with mode: 0644]
app/nginx/src/os/win32/ngx_process_cycle.h [new file with mode: 0644]
app/nginx/src/os/win32/ngx_service.c [new file with mode: 0644]
app/nginx/src/os/win32/ngx_shmem.c [new file with mode: 0644]
app/nginx/src/os/win32/ngx_shmem.h [new file with mode: 0644]
app/nginx/src/os/win32/ngx_socket.c [new file with mode: 0644]
app/nginx/src/os/win32/ngx_socket.h [new file with mode: 0644]
app/nginx/src/os/win32/ngx_stat.c [new file with mode: 0644]
app/nginx/src/os/win32/ngx_thread.c [new file with mode: 0644]
app/nginx/src/os/win32/ngx_thread.h [new file with mode: 0644]
app/nginx/src/os/win32/ngx_time.c [new file with mode: 0644]
app/nginx/src/os/win32/ngx_time.h [new file with mode: 0644]
app/nginx/src/os/win32/ngx_udp_wsarecv.c [new file with mode: 0644]
app/nginx/src/os/win32/ngx_user.c [new file with mode: 0644]
app/nginx/src/os/win32/ngx_user.h [new file with mode: 0644]
app/nginx/src/os/win32/ngx_win32_config.h [new file with mode: 0644]
app/nginx/src/os/win32/ngx_win32_init.c [new file with mode: 0644]
app/nginx/src/os/win32/ngx_wsarecv.c [new file with mode: 0644]
app/nginx/src/os/win32/ngx_wsarecv_chain.c [new file with mode: 0644]
app/nginx/src/os/win32/ngx_wsasend.c [new file with mode: 0644]
app/nginx/src/os/win32/ngx_wsasend_chain.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream.h [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_access_module.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_core_module.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_geo_module.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_geoip_module.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_handler.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_limit_conn_module.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_log_module.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_map_module.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_proxy_module.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_realip_module.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_return_module.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_script.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_script.h [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_split_clients_module.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_ssl_module.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_ssl_module.h [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_ssl_preread_module.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_upstream.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_upstream.h [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_upstream_hash_module.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_upstream_least_conn_module.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_upstream_round_robin.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_upstream_round_robin.h [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_upstream_zone_module.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_variables.c [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_variables.h [new file with mode: 0644]
app/nginx/src/stream/ngx_stream_write_filter_module.c [new file with mode: 0644]
app/nginx/src/tldk/be.c [new file with mode: 0644]
app/nginx/src/tldk/be.h [new file with mode: 0644]
app/nginx/src/tldk/debug.h [new file with mode: 0644]
app/nginx/src/tldk/module.c [new file with mode: 0644]
app/nginx/src/tldk/ngx_tldk.h [new file with mode: 0644]
app/nginx/src/tldk/parse.c [new file with mode: 0644]
app/nginx/src/tldk/tldk_event.c [new file with mode: 0644]
app/nginx/src/tldk/tldk_sock.c [new file with mode: 0644]
app/nginx/src/tldk/tldk_sock.h [new file with mode: 0644]