comparison src/http/modules/perl/nginx.pm @ 298:30862655219e NGINX_0_5_19

nginx 0.5.19 *) Change: now the $request_time variable has millisecond precision. *) Change: the method $r->rflush of ngx_http_perl_module was renamed to the $r->flush. *) Feature: the $upstream_addr variable. *) Feature: the "proxy_headers_hash_max_size" and "proxy_headers_hash_bucket_size" directives. Thanks to Volodymyr Kostyrko. *) Bugfix: the files more than 2G could not be transferred using sendfile and limit_rate on 64-bit platforms. *) Bugfix: the files more than 2G could not be transferred using sendfile on 64-bit Linux.
author Igor Sysoev <http://sysoev.ru>
date Tue, 24 Apr 2007 00:00:00 +0400
parents 2ceaee987f37
children cba14c1e2a4b
comparison
equal deleted inserted replaced
297:df0fd0d43ed8 298:30862655219e
45 HTTP_SERVICE_UNAVAILABLE 45 HTTP_SERVICE_UNAVAILABLE
46 HTTP_GATEWAY_TIME_OUT 46 HTTP_GATEWAY_TIME_OUT
47 HTTP_INSUFFICIENT_STORAGE 47 HTTP_INSUFFICIENT_STORAGE
48 ); 48 );
49 49
50 our $VERSION = '0.5.18'; 50 our $VERSION = '0.5.19';
51 51
52 require XSLoader; 52 require XSLoader;
53 XSLoader::load('nginx', $VERSION); 53 XSLoader::load('nginx', $VERSION);
54 54
55 # Preloaded methods go here. 55 # Preloaded methods go here.
90 use constant HTTP_SERVICE_UNAVAILABLE => 503; 90 use constant HTTP_SERVICE_UNAVAILABLE => 503;
91 use constant HTTP_GATEWAY_TIME_OUT => 504; 91 use constant HTTP_GATEWAY_TIME_OUT => 504;
92 use constant HTTP_INSUFFICIENT_STORAGE => 507; 92 use constant HTTP_INSUFFICIENT_STORAGE => 507;
93 93
94 94
95 sub rflush {
96 my $r = shift;
97
98 $r->flush;
99 }
100
101
95 1; 102 1;
96 __END__ 103 __END__
97 104
98 =head1 NAME 105 =head1 NAME
99 106