comparison src/http/modules/ngx_http_flv_module.c @ 1370:cc114c85be0f

rename ngx_http_discard_body() to ngx_http_discard_request_body()
author Igor Sysoev <igor@sysoev.ru>
date Mon, 06 Aug 2007 15:37:22 +0000
parents c4f666fc3a7e
children aabbf66b61ea
comparison
equal deleted inserted replaced
1369:6254b90eea4b 1370:cc114c85be0f
87 /* TODO: Win32 */ 87 /* TODO: Win32 */
88 if (r->zero_in_uri) { 88 if (r->zero_in_uri) {
89 return NGX_DECLINED; 89 return NGX_DECLINED;
90 } 90 }
91 91
92 rc = ngx_http_discard_body(r); 92 rc = ngx_http_discard_request_body(r);
93 93
94 if (rc != NGX_OK && rc != NGX_AGAIN) { 94 if (rc != NGX_OK && rc != NGX_AGAIN) {
95 return rc; 95 return rc;
96 } 96 }
97 97