nginx/src/core
Maxim Dounin 97f59dda09 Dynamic modules.
The auto/module script is extended to understand ngx_module_link=DYNAMIC.
When set, it links the module as a shared object rather than statically
into nginx binary.  The module can later be loaded using the "load_module"
directive.

New auto/module parameter ngx_module_order allows to define module loading
order in complex cases.  By default the order is set based on ngx_module_type.

3rd party modules can be compiled dynamically using the --add-dynamic-module
configure option, which will preset ngx_module_link to "DYNAMIC" before
calling the module config script.

Win32 support is rudimentary, and only works when using MinGW gcc (which
is able to handle exports/imports automatically).

In collaboration with Ruslan Ermilov.
2016-02-04 20:25:29 +03:00
..
nginx.c Dynamic modules. 2016-02-04 20:25:29 +03:00
nginx.h Version bump. 2016-01-28 15:25:58 +03:00
ngx_array.c Simplified ngx_array_create(). 2013-03-21 15:52:52 +00:00
ngx_array.h Moved ngx_array_t definition from ngx_core.h to ngx_array.h. 2013-03-21 16:04:09 +00:00
ngx_buf.c Renamed ngx_handle_sent_chain() to ngx_chain_update_sent(). 2014-11-19 21:16:19 +03:00
ngx_buf.h Added support for offloading read() in thread pools. 2015-03-14 17:37:25 +03:00
ngx_conf_file.c Dynamic modules: changed ngx_modules to cycle->modules. 2016-02-04 18:30:21 +03:00
ngx_conf_file.h Dynamic modules: moved module-related stuff to separate files. 2016-02-04 18:30:21 +03:00
ngx_config.h Core: expose maximum values of time_t and ngx_int_t. 2015-03-17 00:24:34 +03:00
ngx_connection.c Win32: fixed build with MinGW and MinGW-w64 gcc. 2015-10-17 21:41:02 +09:00
ngx_connection.h The HTTP/2 implementation (RFC 7240, 7241). 2015-09-11 20:13:06 +03:00
ngx_core.h Dynamic modules: dlopen() support. 2016-02-04 18:30:21 +03:00
ngx_cpuinfo.c Copyright updated. 2012-01-18 15:07:43 +00:00
ngx_crc32.c Copyright updated. 2012-01-18 15:07:43 +00:00
ngx_crc32.h Copyright updated. 2012-01-18 15:07:43 +00:00
ngx_crc.h Copyright updated. 2012-01-18 15:07:43 +00:00
ngx_crypt.c Typo. 2014-11-28 16:57:23 +03:00
ngx_crypt.h Copyright updated. 2012-01-18 15:07:43 +00:00
ngx_cycle.c Dynamic modules. 2016-02-04 20:25:29 +03:00
ngx_cycle.h Dynamic modules. 2016-02-04 20:25:29 +03:00
ngx_file.c Core: limited levels of subdirectory hierarchy used for temp files. 2015-04-07 01:32:08 +03:00
ngx_file.h Added support for offloading read() in thread pools. 2015-03-14 17:37:25 +03:00
ngx_hash.c Core: fixed segfault with null in wildcard hash names. 2015-09-11 17:04:40 +03:00
ngx_hash.h Copyright updated. 2012-01-18 15:07:43 +00:00
ngx_inet.c Fixed overflow detection in ngx_inet_addr(). 2015-04-28 18:55:03 +03:00
ngx_inet.h Core: externalized ngx_cmp_sockaddr(). 2013-12-06 14:30:27 +04:00
ngx_list.c Simplified ngx_list_create(). 2013-06-19 08:55:08 +04:00
ngx_list.h Copyright updated. 2012-01-18 15:07:43 +00:00
ngx_log.c Core: properly initialized written bytes counter in memory log. 2015-05-19 19:27:07 +03:00
ngx_log.h Core: added support for writing to stdout. 2015-06-16 15:47:40 +03:00
ngx_md5.c Reverted incorrect change in internal md5 (part of r3928). 2011-11-14 13:38:02 +00:00
ngx_md5.h Copyright updated. 2012-01-18 15:07:43 +00:00
ngx_module.c Dynamic modules. 2016-02-04 20:25:29 +03:00
ngx_module.h Dynamic modules. 2016-02-04 20:25:29 +03:00
ngx_murmurhash.c ngx_murmur_hash2() 2011-04-15 10:59:24 +00:00
ngx_murmurhash.h Comment fixed. 2012-04-05 19:49:34 +00:00
ngx_open_file_cache.c Fixed typo in the error message. 2015-08-11 10:28:00 +03:00
ngx_open_file_cache.h Disable symlinks: added the "from" parameter support to the open file cache. 2012-02-27 16:46:57 +00:00
ngx_output_chain.c Output chain: free chain links in ngx_chain_writer(). 2015-03-23 21:09:05 +03:00
ngx_palloc.c Core: removed meaningless check from ngx_palloc_block(). 2014-06-26 03:34:19 +04:00
ngx_palloc.h Copyright updated. 2012-01-18 15:07:43 +00:00
ngx_parse_time.c Moved ngx_http_parse_time() to core, renamed accordingly. 2015-06-11 20:42:31 +03:00
ngx_parse_time.h Moved ngx_http_parse_time() to core, renamed accordingly. 2015-06-11 20:42:31 +03:00
ngx_parse.c Fixed ngx_parse_time() out of bounds access (ticket #821). 2015-10-30 21:43:30 +03:00
ngx_parse.h Time parsing cleanup. 2012-02-13 15:41:11 +00:00
ngx_proxy_protocol.c Core: renamed ngx_proxy_protocol_parse to ngx_proxy_protocol_read. 2015-06-16 13:45:19 +03:00
ngx_proxy_protocol.h Core: renamed ngx_proxy_protocol_parse to ngx_proxy_protocol_read. 2015-06-16 13:45:19 +03:00
ngx_queue.c Copyright updated. 2012-01-18 15:07:43 +00:00
ngx_queue.h Copyright updated. 2012-01-18 15:07:43 +00:00
ngx_radix_tree.c Geo: IPv6 support. 2012-12-25 08:21:56 +00:00
ngx_radix_tree.h Geo: IPv6 support. 2012-12-25 08:21:56 +00:00
ngx_rbtree.c Events: removed broken thread support from event timers. 2014-08-25 13:34:39 +04:00
ngx_rbtree.h Events: removed broken thread support from event timers. 2014-08-25 13:34:39 +04:00
ngx_regex.c Removed ngx_threaded and related code. 2015-03-26 14:15:13 +03:00
ngx_regex.h Fixed the ngx_regex.h header file compatibility with C++. 2012-05-17 13:47:04 +00:00
ngx_resolver.c Resolver: style. 2015-12-17 17:30:22 +03:00
ngx_resolver.h Resolver: TCP support. 2016-01-28 15:28:20 +03:00
ngx_rwlock.c Core: read/write locks are also required by the Stream module. 2015-10-23 18:21:33 -07:00
ngx_rwlock.h Core: read/write locks. 2015-03-21 14:05:08 +03:00
ngx_sha1.h Copyright updated. 2012-01-18 15:07:43 +00:00
ngx_shmtx.c Core: fixed build on Tru64 UNIX. 2015-02-10 01:51:08 +03:00
ngx_shmtx.h Fixed typo in a function name. 2012-07-03 13:06:40 +00:00
ngx_slab.c Core: bugfix for the ngx_slab_max_size case. 2014-06-18 16:39:59 +08:00
ngx_slab.h Core: added ngx_slab_calloc() and ngx_slab_calloc_locked(). 2014-06-04 15:09:19 +04:00
ngx_spinlock.c Core: guard against spinlock usage without atomic ops. 2015-03-26 14:15:06 +03:00
ngx_string.c Style: NGX_PTR_SIZE replaced with sizeof(void *). 2015-12-03 20:06:45 +03:00
ngx_string.h Autoindex: implemented JSON output format. 2014-12-12 20:25:35 +03:00
ngx_syslog.c Syslog: added "nohostname" option. 2015-10-26 19:06:42 +03:00
ngx_syslog.h Syslog: added "nohostname" option. 2015-10-26 19:06:42 +03:00
ngx_thread_pool.c Thread pools: implemented graceful exiting of threads. 2015-03-23 17:51:21 +03:00
ngx_thread_pool.h Thread pools implementation. 2015-03-14 17:37:07 +03:00
ngx_times.c Added syslog support for error_log and access_log directives. 2014-05-12 16:34:15 +04:00
ngx_times.h Added syslog support for error_log and access_log directives. 2014-05-12 16:34:15 +04:00