comparison src/http/modules/perl/ngx_http_perl_module.c @ 3448:54e7c85ed4b4

delete ngx_http_perl_cleanup_t unused since r909
author Igor Sysoev <igor@sysoev.ru>
date Fri, 12 Feb 2010 09:40:46 +0000
parents b759cf8f6000
children dd1570b6f237
comparison
equal deleted inserted replaced
3447:de70f912ad58 3448:54e7c85ed4b4
26 26
27 typedef struct { 27 typedef struct {
28 SV *sub; 28 SV *sub;
29 ngx_str_t handler; 29 ngx_str_t handler;
30 } ngx_http_perl_variable_t; 30 } ngx_http_perl_variable_t;
31
32
33 typedef struct {
34 SV *sv;
35 PerlInterpreter *perl;
36 } ngx_http_perl_cleanup_t;
37 31
38 32
39 #if (NGX_HTTP_SSI) 33 #if (NGX_HTTP_SSI)
40 static ngx_int_t ngx_http_perl_ssi(ngx_http_request_t *r, 34 static ngx_int_t ngx_http_perl_ssi(ngx_http_request_t *r,
41 ngx_http_ssi_ctx_t *ssi_ctx, ngx_str_t **params); 35 ngx_http_ssi_ctx_t *ssi_ctx, ngx_str_t **params);