comparison auto/sources @ 6180:8b6fa4842133

Moved ngx_http_parse_time() to core, renamed accordingly. The function is now called ngx_parse_http_time(), and can be used by any code to parse HTTP-style date and time. In particular, it will be used for OCSP stapling. For compatibility, a macro to map ngx_http_parse_time() to the new name provided for a while.
author Maxim Dounin <mdounin@mdounin.ru>
date Thu, 11 Jun 2015 20:42:31 +0300
parents 8807a2369b1a
children 0dcef374b8bb
comparison
equal deleted inserted replaced
6179:c61210e2e081 6180:8b6fa4842133
17 src/core/ngx_hash.h \ 17 src/core/ngx_hash.h \
18 src/core/ngx_buf.h \ 18 src/core/ngx_buf.h \
19 src/core/ngx_queue.h \ 19 src/core/ngx_queue.h \
20 src/core/ngx_string.h \ 20 src/core/ngx_string.h \
21 src/core/ngx_parse.h \ 21 src/core/ngx_parse.h \
22 src/core/ngx_parse_time.h \
22 src/core/ngx_inet.h \ 23 src/core/ngx_inet.h \
23 src/core/ngx_file.h \ 24 src/core/ngx_file.h \
24 src/core/ngx_crc.h \ 25 src/core/ngx_crc.h \
25 src/core/ngx_crc32.h \ 26 src/core/ngx_crc32.h \
26 src/core/ngx_murmurhash.h \ 27 src/core/ngx_murmurhash.h \
51 src/core/ngx_buf.c \ 52 src/core/ngx_buf.c \
52 src/core/ngx_queue.c \ 53 src/core/ngx_queue.c \
53 src/core/ngx_output_chain.c \ 54 src/core/ngx_output_chain.c \
54 src/core/ngx_string.c \ 55 src/core/ngx_string.c \
55 src/core/ngx_parse.c \ 56 src/core/ngx_parse.c \
57 src/core/ngx_parse_time.c \
56 src/core/ngx_inet.c \ 58 src/core/ngx_inet.c \
57 src/core/ngx_file.c \ 59 src/core/ngx_file.c \
58 src/core/ngx_crc32.c \ 60 src/core/ngx_crc32.c \
59 src/core/ngx_murmurhash.c \ 61 src/core/ngx_murmurhash.c \
60 src/core/ngx_md5.c \ 62 src/core/ngx_md5.c \
301 src/http/ngx_http_request_body.c \ 303 src/http/ngx_http_request_body.c \
302 src/http/ngx_http_variables.c \ 304 src/http/ngx_http_variables.c \
303 src/http/ngx_http_script.c \ 305 src/http/ngx_http_script.c \
304 src/http/ngx_http_upstream.c \ 306 src/http/ngx_http_upstream.c \
305 src/http/ngx_http_upstream_round_robin.c \ 307 src/http/ngx_http_upstream_round_robin.c \
306 src/http/ngx_http_parse_time.c \
307 src/http/modules/ngx_http_static_module.c \ 308 src/http/modules/ngx_http_static_module.c \
308 src/http/modules/ngx_http_index_module.c \ 309 src/http/modules/ngx_http_index_module.c \
309 src/http/modules/ngx_http_chunked_filter_module.c \ 310 src/http/modules/ngx_http_chunked_filter_module.c \
310 src/http/modules/ngx_http_range_filter_module.c \ 311 src/http/modules/ngx_http_range_filter_module.c \
311 src/http/modules/ngx_http_headers_filter_module.c \ 312 src/http/modules/ngx_http_headers_filter_module.c \