forked from evanmiller/mod_zip
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathngx_http_zip_headers.h
More file actions
15 lines (13 loc) · 823 Bytes
/
ngx_http_zip_headers.h
File metadata and controls
15 lines (13 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
ngx_int_t ngx_http_zip_strip_range_header(ngx_http_request_t *r);
ngx_int_t ngx_http_zip_add_cache_control(ngx_http_request_t *r);
ngx_int_t ngx_http_zip_set_range_header(ngx_http_request_t *r,
ngx_http_zip_range_t *piece_range, ngx_http_zip_range_t *range);
ngx_int_t ngx_http_zip_add_content_range_header(ngx_http_request_t *r);
ngx_int_t ngx_http_zip_add_full_content_range(ngx_http_request_t *r);
ngx_int_t ngx_http_zip_add_partial_content_range(ngx_http_request_t *r,
ngx_http_zip_ctx_t *ctx);
ngx_int_t ngx_http_zip_init_multipart_range(ngx_http_request_t *r,
ngx_http_zip_ctx_t *ctx);
ngx_int_t ngx_http_zip_init_subrequest_headers(ngx_http_request_t *r, ngx_http_zip_ctx_t *ctx,
ngx_http_request_t *sr, ngx_http_zip_range_t *piece_range,
ngx_http_zip_range_t *req_range);