comparison src/http/modules/perl/ngx_http_perl_module.h @ 182:13710a1813ad NGINX_0_3_38

nginx 0.3.38 *) Feature: the ngx_http_dav_module. *) Change: the ngx_http_perl_module optimizations. Thanks to Sergey Skvortsov. *) Feature: the ngx_http_perl_module supports the $r->request_body_file method. *) Feature: the "client_body_in_file_only" directive. *) Workaround: now on disk overflow nginx tries to write access logs once a second only. Thanks to Anton Yuzhaninov and Maxim Dounin. *) Bugfix: now the "limit_rate" directive more precisely limits rate if rate is more than 100 Kbyte/s. Thanks to ForJest. *) Bugfix: now the IMAP/POP3 proxy escapes the "\r" and "\n" symbols in login and password to pass authorization server. Thanks to Maxim Dounin.
author Igor Sysoev <http://sysoev.ru>
date Fri, 14 Apr 2006 00:00:00 +0400
parents fef68f68bcfd
children 38e7b94d63ac
comparison
equal deleted inserted replaced
181:de8983d10e75 182:13710a1813ad
19 typedef ngx_http_request_t *nginx; 19 typedef ngx_http_request_t *nginx;
20 20
21 typedef struct { 21 typedef struct {
22 PerlInterpreter *perl; 22 PerlInterpreter *perl;
23 23
24 char *filename; 24 ngx_str_t filename;
25
26 ngx_str_t redirect_uri; 25 ngx_str_t redirect_uri;
27 ngx_str_t redirect_args; 26 ngx_str_t redirect_args;
28 27
29 #if (NGX_HTTP_SSI) 28 #if (NGX_HTTP_SSI)
30 ngx_http_ssi_ctx_t *ssi; 29 ngx_http_ssi_ctx_t *ssi;
43 #undef dTHXa 42 #undef dTHXa
44 #define dTHXa(a) 43 #define dTHXa(a)
45 #endif 44 #endif
46 45
47 46
48 extern void boot_DynaLoader (pTHX_ CV* cv); 47 extern void boot_DynaLoader(pTHX_ CV* cv);
49 48
50 49
51 #endif /* _NGX_HTTP_PERL_MODULE_H_INCLUDED_ */ 50 #endif /* _NGX_HTTP_PERL_MODULE_H_INCLUDED_ */