comparison src/http/modules/ngx_http_flv_module.c @ 572:ff463db0be31 NGINX_0_8_38

nginx 0.8.38 *) Feature: the "proxy_no_cache" and "fastcgi_no_cache" directives. *) Feature: now the "rewrite" directive does a redirect automatically if the $scheme variable is used. Thanks to Piotr Sikora. *) Bugfix: now "limit_req" delay directive conforms to the described algorithm. Thanks to Maxim Dounin. *) Bugfix: the $uid_got variable might not be used in the SSI and perl modules.
author Igor Sysoev <http://sysoev.ru>
date Mon, 24 May 2010 00:00:00 +0400
parents f7ec98e3caeb
children 4d05413aebad
comparison
equal deleted inserted replaced
571:5b59e716792b 572:ff463db0be31
78 78
79 if (r->uri.data[r->uri.len - 1] == '/') { 79 if (r->uri.data[r->uri.len - 1] == '/') {
80 return NGX_DECLINED; 80 return NGX_DECLINED;
81 } 81 }
82 82
83 if (r->zero_in_uri) {
84 return NGX_DECLINED;
85 }
86
87 rc = ngx_http_discard_request_body(r); 83 rc = ngx_http_discard_request_body(r);
88 84
89 if (rc != NGX_OK) { 85 if (rc != NGX_OK) {
90 return rc; 86 return rc;
91 } 87 }