comparison src/core/ngx_file.h @ 430:dac47e9ef0d5 NGINX_0_7_27

nginx 0.7.27 *) Feature: the "try_files" directive. *) Feature: variables support in the "fastcgi_pass" directive. *) Feature: now the $geo variable may get an address from a variable. Thanks to Andrei Nigmatulin. *) Feature: now a location's modifier may be used without space before name. *) Feature: the $upstream_response_length variable. *) Bugfix: now a "add_header" directive does not add an empty value. *) Bugfix: if zero length static file was requested, then nginx just closed connection; the bug had appeared in 0.7.25. *) Bugfix: a MOVE method could not move file in non-existent directory. *) Bugfix: a segmentation fault occurred in worker process, if no one named location was defined in server, but some one was used in an error_page directive. Thanks to Sergey Bochenkov.
author Igor Sysoev <http://sysoev.ru>
date Mon, 15 Dec 2008 00:00:00 +0300
parents 79c5df00501e
children c8cfb6c462ef
comparison
equal deleted inserted replaced
429:3b8e9d1bc9bb 430:dac47e9ef0d5
58 } ngx_temp_file_t; 58 } ngx_temp_file_t;
59 59
60 60
61 typedef struct { 61 typedef struct {
62 ngx_uint_t access; 62 ngx_uint_t access;
63 ngx_uint_t path_access;
63 time_t time; 64 time_t time;
64 ngx_fd_t fd; 65 ngx_fd_t fd;
66 ngx_err_t rename_error;
65 67
66 unsigned create_path:1; 68 unsigned create_path:1;
67 unsigned delete_file:1; 69 unsigned delete_file:1;
70 unsigned log_rename_error:1;
68 71
69 ngx_log_t *log; 72 ngx_log_t *log;
70 } ngx_ext_rename_file_t; 73 } ngx_ext_rename_file_t;
71 74
72 75