comparison src/http/modules/perl/ngx_http_perl_module.h @ 912:7fa926a7926d

$r->variable() supports perl only variables
author Igor Sysoev <igor@sysoev.ru>
date Tue, 12 Dec 2006 22:06:03 +0000
parents 73c66ed9a9cd
children b43f244d0430
comparison
equal deleted inserted replaced
911:73c66ed9a9cd 912:7fa926a7926d
27 SV *next; 27 SV *next;
28 int sleep; 28 int sleep;
29 29
30 ngx_uint_t done; /* unsigned done:1; */ 30 ngx_uint_t done; /* unsigned done:1; */
31 31
32 ngx_array_t *variables; /* array of ngx_http_perl_var_t */
33
32 #if (NGX_HTTP_SSI) 34 #if (NGX_HTTP_SSI)
33 ngx_http_ssi_ctx_t *ssi; 35 ngx_http_ssi_ctx_t *ssi;
34 #endif 36 #endif
35 } ngx_http_perl_ctx_t; 37 } ngx_http_perl_ctx_t;
38
39
40 typedef struct {
41 ngx_uint_t hash;
42 ngx_str_t name;
43 ngx_str_t value;
44 } ngx_http_perl_var_t;
36 45
37 46
38 extern ngx_module_t ngx_http_perl_module; 47 extern ngx_module_t ngx_http_perl_module;
39 48
40 49