diff src/http/ngx_http_request.h @ 963:78e70dae89f0

move ranges array to ngx_http_range_filter_ctx_t
author Igor Sysoev <igor@sysoev.ru>
date Fri, 29 Dec 2006 08:02:31 +0000
parents 9ddb57468082
children dd128232e6ba
line wrap: on
line diff
--- a/src/http/ngx_http_request.h
+++ b/src/http/ngx_http_request.h
@@ -215,13 +215,6 @@ typedef struct {
 
 
 typedef struct {
-    off_t                             start;
-    off_t                             end;
-    ngx_str_t                         content_range;
-} ngx_http_range_t;
-
-
-typedef struct {
     ngx_list_t                        headers;
 
     ngx_uint_t                        status;
@@ -245,7 +238,6 @@ typedef struct {
     ngx_str_t                         content_type;
     ngx_str_t                         charset;
 
-    ngx_array_t                       ranges;
     ngx_array_t                       cache_control;
 
     off_t                             content_length_n;