comparison src/http/ngx_http_script.h @ 218:1bf60f8c5c9e NGINX_0_3_56

nginx 0.3.56 *) Feature: the "dav_access" directive. *) Feature: the "if" directive supports the "-d", "!-d", "-e", "!-e", "-x", and "!-x" operators. *) Bugfix: a segmentation fault occurred if an request returned an redirect and some sent to client header lines were logged in the access log.
author Igor Sysoev <http://sysoev.ru>
date Fri, 04 Aug 2006 00:00:00 +0400
parents 3689cd4e3228
children 10cc350ed8a1
comparison
equal deleted inserted replaced
217:a346c23fc94e 218:1bf60f8c5c9e
138 } ngx_http_script_return_code_t; 138 } ngx_http_script_return_code_t;
139 139
140 140
141 typedef enum { 141 typedef enum {
142 ngx_http_script_file_plain = 0, 142 ngx_http_script_file_plain = 0,
143 ngx_http_script_file_not_plain 143 ngx_http_script_file_not_plain,
144 ngx_http_script_file_dir,
145 ngx_http_script_file_not_dir,
146 ngx_http_script_file_exists,
147 ngx_http_script_file_not_exists,
148 ngx_http_script_file_exec,
149 ngx_http_script_file_not_exec
144 } ngx_http_script_file_op_e; 150 } ngx_http_script_file_op_e;
145 151
146 152
147 typedef struct { 153 typedef struct {
148 ngx_http_script_code_pt code; 154 ngx_http_script_code_pt code;