Changes between Initial Version and Version 1 of Ticket #2068
- Timestamp:
- 10/25/20 13:59:30 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2068 – Description
initial v1 5 5 6 6 The patch is bellow: 7 ``` 7 8 8 9 diff --git a/src/http/ngx_http_request_body.c b/src/http/ngx_http_request_body.c 9 10 index 71d7e9ab..fe075a87 100644 … … 18 19 b->last += n; 19 20 r->request_length -= n; 20 ```21 21 22 ``` c 22 23 23 24 401 static ngx_int_t 24 25 402 ngx_http_copy_pipelined_header(ngx_http_request_t *r, ngx_buf_t *buf) … … 102 103 480 return NGX_OK; 103 104 481 } 104 ```