comparison src/http/modules/perl/ngx_http_perl_module.c @ 576:da3c99095432 NGINX_0_8_34

nginx 0.8.34 *) Bugfix: nginx did not support all ciphers and digests used in client certificates. Thanks to Innocenty Enikeew. *) Bugfix: nginx cached incorrectly FastCGI responses if there was large stderr output before response. *) Bugfix: nginx did not support HTTPS referrers. *) Bugfix: nginx/Windows might not find file if path in configuration was given in other character case; the bug had appeared in 0.8.34. *) Bugfix: the $date_local variable has an incorrect value, if the "%s" format was used. Thanks to Maxim Dounin. *) Bugfix: if ssl_session_cache was not set or was set to "none", then during client certificate verify the error "session id context uninitialized" might occur; the bug had appeared in 0.7.1. *) Bugfix: a geo range returned default value if the range included two or more /16 networks and did not begin at /16 network boundary. *) Bugfix: a block used in a "stub" parameter of an "include" SSI directive was output with "text/plain" MIME type. *) Bugfix: $r->sleep() did not work; the bug had appeared in 0.8.11.
author Igor Sysoev <http://sysoev.ru>
date Wed, 03 Mar 2010 00:00:00 +0300
parents 697030d79811
children 8246d8a2c2be
comparison
equal deleted inserted replaced
575:66adffc35a46 576:da3c99095432
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);