Home
last modified time | relevance | path

Searched refs:header_in (Results 1 – 9 of 9) sorted by relevance

/f-stack/app/nginx-1.16.1/src/http/
H A Dngx_http_request_body.c88 preread = r->header_in->last - r->header_in->pos; in ngx_http_read_client_request_body()
97 out.buf = r->header_in; in ngx_http_read_client_request_body()
106 r->request_length += preread - (r->header_in->last - r->header_in->pos); in ngx_http_read_client_request_body()
110 && rb->rest <= (off_t) (r->header_in->end - r->header_in->last)) in ngx_http_read_client_request_body()
121 b->start = r->header_in->pos; in ngx_http_read_client_request_body()
122 b->pos = r->header_in->pos; in ngx_http_read_client_request_body()
123 b->last = r->header_in->last; in ngx_http_read_client_request_body()
124 b->end = r->header_in->end; in ngx_http_read_client_request_body()
544 size = r->header_in->last - r->header_in->pos; in ngx_http_discard_request_body()
547 rc = ngx_http_discard_request_body_filter(r, r->header_in); in ngx_http_discard_request_body()
H A Dngx_http_request.c1175 if (r->header_in->pos == r->header_in->end) { in ngx_http_process_request_line()
1352 if (r->header_in->pos == r->header_in->end) { in ngx_http_process_request_headers()
1516 n = r->header_in->last - r->header_in->pos; in ngx_http_read_request_header()
1524 r->header_in->end - r->header_in->last); in ngx_http_read_request_header()
1556 r->header_in->last += n; in ngx_http_read_request_header()
1579 r->header_in->pos = r->header_in->start; in ngx_http_alloc_large_header_buffer()
1580 r->header_in->last = r->header_in->start; in ngx_http_alloc_large_header_buffer()
1642 r->header_in = b; in ngx_http_alloc_large_header_buffer()
1705 r->header_in = b; in ngx_http_alloc_large_header_buffer()
2727 || r->header_in->pos < r->header_in->last in ngx_http_finalize_connection()
[all …]
H A Dngx_http_request.h393 ngx_buf_t *header_in; member
H A Dngx_http_upstream.c3375 if (r->header_in->last > r->header_in->pos) { in ngx_http_upstream_process_upgraded()
3376 b = r->header_in; in ngx_http_upstream_process_upgraded()
H A Dngx_http_variables.c1033 for (p = s; p < r->header_in->last; p++) { in ngx_http_variable_request_line()
/f-stack/app/nginx-1.16.1/src/http/modules/perl/
H A Dnginx.xs222 header_in(r, key)
/f-stack/app/nginx-1.16.1/
H A DCHANGES.ru2049 *) Исправление: метод $r->header_in() встроенного перла не возвращал
4962 *) Исправление: метод $r->header_in() не возвращал значения строк
6605 *) Исправление: метод $r->header_in("Cookie") модуля
H A DCHANGES2003 *) Bugfix: the $r->header_in() embedded perl method did not return value
4869 *) Bugfix: the $r->header_in() method did not return value of the
6475 *) Bugfix: the $r->header_in("Cookie") of the ngx_http_perl_module now
/f-stack/app/nginx-1.16.1/src/http/v2/
H A Dngx_http_v2.c3091 r->header_in = ngx_create_temp_buf(r->pool, in ngx_http_v2_create_stream()
3093 if (r->header_in == NULL) { in ngx_http_v2_create_stream()