From 7bdb720d6a7b75021ca7cea17d6f3199b5acf4ca Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Wed, 19 Apr 2006 15:30:56 +0000 Subject: nginx-0.3.40-RELEASE import *) Feature: the ngx_http_dav_module supports the MKCOL method. *) Feature: the "create_full_put_path" directive. *) Feature: the "$limit_rate" variable. --- src/http/ngx_http_script.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/http/ngx_http_script.h') diff --git a/src/http/ngx_http_script.h b/src/http/ngx_http_script.h index abbbf43f4..3ef4d42e3 100644 --- a/src/http/ngx_http_script.h +++ b/src/http/ngx_http_script.h @@ -75,6 +75,13 @@ typedef struct { } ngx_http_script_var_code_t; +typedef struct { + ngx_http_script_code_pt code; + ngx_http_set_variable_pt handler; + uintptr_t data; +} ngx_http_script_var_handler_code_t; + + typedef struct { ngx_http_script_code_pt code; uintptr_t n; @@ -193,6 +200,7 @@ void ngx_http_script_file_code(ngx_http_script_engine_t *e); void ngx_http_script_complex_value_code(ngx_http_script_engine_t *e); void ngx_http_script_value_code(ngx_http_script_engine_t *e); void ngx_http_script_set_var_code(ngx_http_script_engine_t *e); +void ngx_http_script_var_set_handler_code(ngx_http_script_engine_t *e); void ngx_http_script_var_code(ngx_http_script_engine_t *e); void ngx_http_script_nop_code(ngx_http_script_engine_t *e); -- cgit v1.2.1