Home
last modified time | relevance | path

Searched refs:content_length (Results 1 – 25 of 29) sorted by relevance

12

/PHP-7.2/sapi/cli/
H A Dphp_http_parser.c327 parser->content_length = -1; in php_http_parser_execute()
356 parser->content_length = -1; in php_http_parser_execute()
505 parser->content_length = -1; in php_http_parser_execute()
1231 parser->content_length *= 10; in php_http_parser_execute()
1355 if (parser->content_length == 0) { in php_http_parser_execute()
1384 parser->content_length -= to_read; in php_http_parser_execute()
1407 parser->content_length = c; in php_http_parser_execute()
1431 parser->content_length *= 16; in php_http_parser_execute()
1432 parser->content_length += c; in php_http_parser_execute()
1452 if (parser->content_length == 0) { in php_http_parser_execute()
[all …]
H A Dphp_http_parser.h190 ssize_t content_length; member
/PHP-7.2/ext/standard/tests/http/
H A Dserver.inc56 $content_length = 0;
72 $content_length = (int) $matches[1];
80 if ($content_length > 0) {
81 stream_copy_to_stream($sock, $output, $content_length);
/PHP-7.2/sapi/fpm/fpm/
H A Dfpm_request.c95 proc->content_length = 0; in fpm_request_reading_headers()
111 size_t content_length = fpm_php_content_length(); in fpm_request_info() local
141 proc->content_length = content_length; in fpm_request_info()
H A Dfpm_scoreboard.h36 size_t content_length; /* used with POST only */ member
H A Dfpm_main.c478 size_t remaining = SG(request_info).content_length - SG(read_post_bytes); in sapi_cgi_read_post()
1044 SG(request_info).content_length = 0;
1053 char *content_length = FCGI_GETENV(request, "CONTENT_LENGTH"); local
1390 SG(request_info).content_length = (content_length ? atol(content_length) : 0);
H A Dfpm_php.c193 return SG(request_info).content_length; in fpm_php_content_length()
H A Dfpm_status.c455 proc.content_length, in fpm_status_handle_request()
H A Dfpm_log.c249 len2 = snprintf(b, FPM_LOG_BUFFER - len, "%zu", proc.content_length); in fpm_log_write()
/PHP-7.2/sapi/apache2handler/
H A Dsapi_apache2.c503 char *content_length; in php_apache_request_ctor() local
515 content_length = (char *) apr_table_get(r->headers_in, "Content-Length"); in php_apache_request_ctor()
516 if (content_length) { in php_apache_request_ctor()
517 ZEND_ATOL(SG(request_info).content_length, content_length); in php_apache_request_ctor()
519 SG(request_info).content_length = 0; in php_apache_request_ctor()
/PHP-7.2/main/
H A Drfc1867.h35 size_t content_length; member
H A Drfc1867.c723 if (SG(post_max_size) > 0 && SG(request_info).content_length > SG(post_max_size)) {
724 …ytes exceeds the limit of " ZEND_LONG_FMT " bytes", SG(request_info).content_length, SG(post_max_s…
789 event_start.content_length = SG(request_info).content_length;
H A DSAPI.h83 zend_long content_length; member
H A DSAPI.c264 if ((SG(post_max_size) > 0) && (SG(request_info).content_length > SG(post_max_size))) { in SAPI_POST_READER_FUNC()
266 SG(request_info).content_length, SG(post_max_size)); in SAPI_POST_READER_FUNC()
/PHP-7.2/ext/session/tests/
H A Drfc1867_sid_get.phpt85 ["content_length"]=>
H A Drfc1867_sid_post.phpt83 ["content_length"]=>
H A Drfc1867_sid_get_2.phpt87 ["content_length"]=>
H A Drfc1867_sid_only_cookie.phpt87 ["content_length"]=>
H A Drfc1867.phpt88 ["content_length"]=>
H A Drfc1867_inter.phpt91 ["content_length"]=>
H A Drfc1867_sid_cookie.phpt87 ["content_length"]=>
H A Drfc1867_sid_invalid.phpt95 ["content_length"]=>
/PHP-7.2/sapi/cgi/
H A Dcgi_main.c493 assert(SG(request_info).content_length >= SG(read_post_bytes)); in sapi_cgi_read_post()
495 remaining_bytes = (size_t)(SG(request_info).content_length - SG(read_post_bytes)); in sapi_cgi_read_post()
520 size_t remaining = SG(request_info).content_length - SG(read_post_bytes); in sapi_fcgi_read_post()
1199 SG(request_info).content_length = 0;
1208 char *content_length = CGI_GETENV("CONTENT_LENGTH"); local
1465 SG(request_info).content_length = (content_length ? atol(content_length) : 0);
/PHP-7.2/
H A Drun-tests.php1872 $content_length = strlen($post);
1881 $env['CONTENT_LENGTH'] = $content_length;
1893 $content_length = strlen($post);
1897 $env['CONTENT_LENGTH'] = $content_length;
1906 $content_length = strlen($post);
1910 $env['CONTENT_LENGTH'] = $content_length;
/PHP-7.2/ext/session/
H A Dphp_session.h140 size_t content_length; member

Completed in 53 milliseconds

12