comparison src/core/ngx_times.h @ 394:05981f639d21 NGINX_0_7_9

nginx 0.7.9 *) Change: now ngx_http_charset_module works by default with following MIME types: text/html, text/css, text/xml, text/plain, text/vnd.wap.wml, application/x-javascript, and application/rss+xml. *) Feature: the "charset_types" and "addition_types" directives. *) Feature: now the "gzip_types", "ssi_types", and "sub_filter_types" directives use hash. *) Feature: the ngx_cpp_test_module. *) Feature: the "expires" directive supports daily time. *) Feature: the ngx_http_xslt_module improvements and bug fixing. Thanks to Denis F. Latypoff and Maxim Dounin. *) Bugfix: the "log_not_found" directive did not work for index files tests. *) Bugfix: HTTPS connections might hang, if kqueue, epoll, rtsig, or eventport methods were used; the bug had appeared in 0.7.7. *) Bugfix: if the "server_name", "valid_referers", and "map" directives used an "*.domain.tld" wildcard and exact name "domain.tld" was not set, then the exact name was matched by the wildcard; the bugs had appeared in 0.3.18.
author Igor Sysoev <http://sysoev.ru>
date Tue, 12 Aug 2008 00:00:00 +0400
parents 408f195b3482
children be4f34123024
comparison
equal deleted inserted replaced
393:040b8c84d040 394:05981f639d21
23 void ngx_time_update(time_t sec, ngx_uint_t msec); 23 void ngx_time_update(time_t sec, ngx_uint_t msec);
24 u_char *ngx_http_time(u_char *buf, time_t t); 24 u_char *ngx_http_time(u_char *buf, time_t t);
25 u_char *ngx_http_cookie_time(u_char *buf, time_t t); 25 u_char *ngx_http_cookie_time(u_char *buf, time_t t);
26 void ngx_gmtime(time_t t, ngx_tm_t *tp); 26 void ngx_gmtime(time_t t, ngx_tm_t *tp);
27 27
28 time_t ngx_next_time(time_t when);
29 #define ngx_next_time_n "mktime()"
30
28 31
29 extern volatile ngx_time_t *ngx_cached_time; 32 extern volatile ngx_time_t *ngx_cached_time;
30 33
31 #define ngx_time() ngx_cached_time->sec 34 #define ngx_time() ngx_cached_time->sec
32 #define ngx_timeofday() (ngx_time_t *) ngx_cached_time 35 #define ngx_timeofday() (ngx_time_t *) ngx_cached_time