comparison src/http/modules/perl/ngx_http_perl_module.h @ 633:f971949ffb58 release-0.3.38

nginx-0.3.38-RELEASE import *) 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 <igor@sysoev.ru>
date Fri, 14 Apr 2006 09:53:38 +0000
parents 51b27717f140
children 7e24168b0853
comparison
equal deleted inserted replaced
632:5c60f5f0887d 633:f971949ffb58
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_ */