summaryrefslogtreecommitdiffhomepage
path: root/src/core (follow)
AgeCommit message (Collapse)AuthorFilesLines
2009-11-17fix pcre allocation on Win32, the bug had been introduced in r3326Igor Sysoev1-6/+2
2009-11-17bump versionIgor Sysoev1-2/+2
2009-11-16bump versionIgor Sysoev1-2/+2
2009-11-16align to minimum of a page and a pool sizesIgor Sysoev1-2/+2
2009-11-16ngx_min()Igor Sysoev1-0/+1
2009-11-16large allocation should not be aligned to a page sizeIgor Sysoev1-1/+1
2009-11-16regex named capturesIgor Sysoev3-41/+115
2009-11-13ngx_regex_exec() calling optimiztion:Igor Sysoev2-19/+6
*) change NGX_REGEX_NO_MATCHED to PCRE_ERROR_NOMATCH *) declare ngx_regex_exec() as #define *) optimize SSI regex a little
2009-11-11bump versionIgor Sysoev1-2/+2
2009-11-11use ngx_resolver_alloc() instead of ngx_resolver_calloc()Igor Sysoev1-2/+2
since all fields are filled
2009-11-11fix resolving an empty name (".")Igor Sysoev1-5/+5
2009-11-11bump versionIgor Sysoev1-2/+2
2009-11-09*) fix resolving an empty name ("."),Igor Sysoev1-1/+2
*) add quotes in an error message, *) backout r3299 in ngx_mail_smtp_handler.c
2009-11-09fix "PTR ." case in address resolverIgor Sysoev1-0/+6
2009-11-09fix segfault in resolver:Igor Sysoev1-0/+2
ngx_resolve_name_done() and ngx_resolve_addr_done() did not delete contexts from a resolver node waiting list.
2009-11-05cf->conf_file->file.name.data may be uninitialized, if an allocation failed;Igor Sysoev1-1/+1
found by Clang Static Analyzer
2009-11-04allow to inherit unix domain sockets while online upgradeIgor Sysoev1-2/+9
2009-11-04bump versionIgor Sysoev1-2/+2
2009-11-03ngx_ptocidr() supports IPv6Igor Sysoev1-26/+66
2009-11-03make ngx_inet6_ntop() non-staticIgor Sysoev2-4/+2
2009-11-02optimize some cycles:Igor Sysoev1-9/+14
*) delete surplus variable; *) on i386/amd64 "while (n) / n--" is smaller than "while (n--)", because the platforms have no postfix operations
2009-11-02change ngx_parse_addr() interfaceIgor Sysoev2-23/+15
2009-11-02ngx_parse_addr()Igor Sysoev2-0/+64
2009-11-02rename ngx_peer_addr_t to ngx_addr_tIgor Sysoev4-7/+7
2009-11-02use sin6_addr.s6_addr instead of "(u_char *) & .sin6_addr"Igor Sysoev1-2/+2
2009-11-02replace inet_addr() with ngx_inet_addr()Igor Sysoev1-21/+18
2009-11-02use ngx_inet6_addr()Igor Sysoev1-28/+2
2009-11-02ngx_inet6_addr()Igor Sysoev2-0/+123
2009-11-02style fixIgor Sysoev1-1/+0
2009-11-01delete unused field c->local_socklenIgor Sysoev2-2/+0
2009-10-30do not unlink unix domain socket file while online upgradeIgor Sysoev1-1/+2
2009-10-30unlink unix domain socket file after testingIgor Sysoev1-0/+12
2009-10-28bump versionIgor Sysoev1-2/+2
2009-10-26fix r3211Igor Sysoev1-0/+4
2009-10-26http listen unix domain socketsIgor Sysoev3-19/+61
2009-10-21use lowcase only hostnameIgor Sysoev1-1/+1
2009-10-19add SNI support in -V outputIgor Sysoev1-0/+3
2009-10-15bump versionIgor Sysoev1-2/+2
2009-10-14ignore EACCES errors for top level directories in ngx_create_full_path()Igor Sysoev1-2/+11
2009-10-14do not create Win32 drive letter in ngx_create_full_path()Igor Sysoev1-1/+7
2009-10-09nginx did not close log file set by --error-log-path,Igor Sysoev1-0/+7
the bug was introduced in r2744
2009-10-07bump versionIgor Sysoev1-2/+2
2009-10-06bump versionIgor Sysoev1-2/+2
2009-09-30read_aheadIgor Sysoev2-0/+11
2009-09-30Linux/SPARC malloc() returns an address aligned to 8. This conflicts withIgor Sysoev2-3/+6
our SPARC 16-byte alignment and some allocations may be done out of pool. ngx_memalign(ngx_pagesize) fixes this issue.
2009-09-28bump versionIgor Sysoev1-2/+2
2009-09-25uniform ngx_directio_on/off() interface with other file functionsIgor Sysoev2-3/+3
2009-09-23low default connection errors level from alert to errorIgor Sysoev1-5/+1
2009-09-23bump versionIgor Sysoev1-2/+2
2009-09-22fail if file size was changedIgor Sysoev1-3/+1