mirror of
https://github.com/nginx/nginx.git
synced 2025-06-07 17:52:38 +08:00
ngx_http_range_parse() should be static.
This commit is contained in:
parent
9162057731
commit
e766153451
@ -58,7 +58,7 @@ typedef struct {
|
|||||||
} ngx_http_range_filter_ctx_t;
|
} ngx_http_range_filter_ctx_t;
|
||||||
|
|
||||||
|
|
||||||
ngx_int_t ngx_http_range_parse(ngx_http_request_t *r,
|
static ngx_int_t ngx_http_range_parse(ngx_http_request_t *r,
|
||||||
ngx_http_range_filter_ctx_t *ctx);
|
ngx_http_range_filter_ctx_t *ctx);
|
||||||
static ngx_int_t ngx_http_range_singlepart_header(ngx_http_request_t *r,
|
static ngx_int_t ngx_http_range_singlepart_header(ngx_http_request_t *r,
|
||||||
ngx_http_range_filter_ctx_t *ctx);
|
ngx_http_range_filter_ctx_t *ctx);
|
||||||
@ -230,7 +230,7 @@ next_filter:
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
ngx_int_t
|
static ngx_int_t
|
||||||
ngx_http_range_parse(ngx_http_request_t *r, ngx_http_range_filter_ctx_t *ctx)
|
ngx_http_range_parse(ngx_http_request_t *r, ngx_http_range_filter_ctx_t *ctx)
|
||||||
{
|
{
|
||||||
u_char *p;
|
u_char *p;
|
||||||
|
Loading…
Reference in New Issue
Block a user