Home
last modified time | relevance | path

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

12

/PHP-7.4/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.4/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()
1360 if (parser->content_length == 0) { in php_http_parser_execute()
1389 parser->content_length -= to_read; in php_http_parser_execute()
1412 parser->content_length = c; in php_http_parser_execute()
1436 parser->content_length *= 16; in php_http_parser_execute()
1437 parser->content_length += c; in php_http_parser_execute()
1457 if (parser->content_length == 0) { in php_http_parser_execute()
[all …]
H A Dphp_http_parser.h190 ssize_t content_length; member
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_request.c94 proc->content_length = 0; in fpm_request_reading_headers()
110 size_t content_length = fpm_php_content_length(); in fpm_request_info() local
140 proc->content_length = content_length; in fpm_request_info()
H A Dfpm_scoreboard.h35 size_t content_length; /* used with POST only */ member
H A Dfpm_status.c130 add_assoc_long(&fpm_proc_stat, "request-length", procs[i].content_length); in fpm_status_export_to_zval()
551 proc.content_length, in fpm_status_handle_request()
H A Dfpm_php.c192 return SG(request_info).content_length; in fpm_php_content_length()
H A Dfpm_main.c437 size_t remaining = SG(request_info).content_length - SG(read_post_bytes); in sapi_cgi_read_post()
982 SG(request_info).content_length = 0; in init_request_info()
989 char *content_length = FCGI_GETENV(request, "CONTENT_LENGTH"); in init_request_info() local
1319 SG(request_info).content_length = (content_length ? atol(content_length) : 0); in init_request_info()
H A Dfpm_log.c248 len2 = snprintf(b, FPM_LOG_BUFFER - len, "%zu", proc.content_length); in fpm_log_write()
/PHP-7.4/main/
H A Drfc1867.h33 size_t content_length; member
H A Drfc1867.c713 if (SG(post_max_size) > 0 && SG(request_info).content_length > SG(post_max_size)) {
714 …ytes exceeds the limit of " ZEND_LONG_FMT " bytes", SG(request_info).content_length, SG(post_max_s…
779 event_start.content_length = SG(request_info).content_length;
H A DSAPI.h81 zend_long content_length; member
H A DSAPI.c258 if ((SG(post_max_size) > 0) && (SG(request_info).content_length > SG(post_max_size))) { in SAPI_POST_READER_FUNC()
260 SG(request_info).content_length, SG(post_max_size)); in SAPI_POST_READER_FUNC()
/PHP-7.4/sapi/apache2handler/
H A Dsapi_apache2.c504 char *content_length; in php_apache_request_ctor() local
516 content_length = (char *) apr_table_get(r->headers_in, "Content-Length"); in php_apache_request_ctor()
517 if (content_length) { in php_apache_request_ctor()
518 ZEND_ATOL(SG(request_info).content_length, content_length); in php_apache_request_ctor()
520 SG(request_info).content_length = 0; in php_apache_request_ctor()
/PHP-7.4/ext/session/tests/
H A Drfc1867.phpt88 ["content_length"]=>
H A Drfc1867_sid_cookie.phpt87 ["content_length"]=>
H A Drfc1867_sid_get.phpt85 ["content_length"]=>
H A Drfc1867_sid_get_2.phpt87 ["content_length"]=>
H A Drfc1867_sid_only_cookie.phpt87 ["content_length"]=>
H A Drfc1867_sid_post.phpt83 ["content_length"]=>
H A Drfc1867_inter.phpt91 ["content_length"]=>
H A Drfc1867_sid_invalid.phpt95 ["content_length"]=>
/PHP-7.4/sapi/cgi/
H A Dcgi_main.c484 assert(SG(request_info).content_length >= SG(read_post_bytes)); in sapi_cgi_read_post()
486 remaining_bytes = (size_t)(SG(request_info).content_length - SG(read_post_bytes)); in sapi_cgi_read_post()
511 size_t remaining = SG(request_info).content_length - SG(read_post_bytes); in sapi_fcgi_read_post()
1194 SG(request_info).content_length = 0;
1203 char *content_length = CGI_GETENV("CONTENT_LENGTH"); local
1459 SG(request_info).content_length = (content_length ? atol(content_length) : 0);
/PHP-7.4/ext/session/
H A Dphp_session.h135 size_t content_length; member
/PHP-7.4/
H A Drun-tests.php2383 $content_length = strlen($post);
2392 $env['CONTENT_LENGTH'] = $content_length;
2404 $content_length = strlen($post);
2408 $env['CONTENT_LENGTH'] = $content_length;
2417 $content_length = strlen($post);
2421 $env['CONTENT_LENGTH'] = $content_length;

Completed in 71 milliseconds

12