Home
last modified time | relevance | path

Searched refs:content_length (Results 1 – 25 of 45) sorted by path

12

/PHP-5.5/
H A DNEWS3783 . Fixed bug #60205 (possible integer overflow in content_length). (Laruence)
H A Drun-tests.php1735 $content_length = strlen($post);
1739 $env['CONTENT_LENGTH'] = $content_length;
1750 $content_length = strlen($post);
1754 $env['CONTENT_LENGTH'] = $content_length;
1763 $content_length = strlen($post);
1767 $env['CONTENT_LENGTH'] = $content_length;
/PHP-5.5/ext/session/
H A Dphp_session.h112 size_t content_length; member
H A Dsession.c2633 progress->content_length = data->content_length;
2687 progress->update_step = progress->content_length * -PS(rfc1867_freq) / 100;
2702 …oc_long_ex(progress->data, "content_length", sizeof("content_length"), progress->content_length);
/PHP-5.5/ext/session/tests/
H A Drfc1867.phpt87 [%u|b%"content_length"]=>
H A Drfc1867_inter.phpt90 [%u|b%"content_length"]=>
H A Drfc1867_sid_cookie.phpt86 [%u|b%"content_length"]=>
H A Drfc1867_sid_get.phpt84 [%u|b%"content_length"]=>
H A Drfc1867_sid_get_2.phpt86 [%u|b%"content_length"]=>
H A Drfc1867_sid_only_cookie.phpt86 [%u|b%"content_length"]=>
H A Drfc1867_sid_post.phpt82 [%u|b%"content_length"]=>
/PHP-5.5/ext/standard/tests/http/
H A Dserver.inc48 $content_length = 0;
64 $content_length = (int) $matches[1];
72 if ($content_length > 0) {
73 stream_copy_to_stream($sock, $output, $content_length);
/PHP-5.5/main/
H A DSAPI.c265 if ((SG(post_max_size) > 0) && (SG(request_info).content_length > SG(post_max_size))) { in SAPI_POST_READER_FUNC()
267 SG(request_info).content_length, SG(post_max_size)); in SAPI_POST_READER_FUNC()
H A DSAPI.h84 long content_length; member
H A Drfc1867.c709 if (SG(post_max_size) > 0 && SG(request_info).content_length > SG(post_max_size)) {
710 …ength of %ld bytes exceeds the limit of %ld bytes", SG(request_info).content_length, SG(post_max_s…
775 event_start.content_length = SG(request_info).content_length;
H A Drfc1867.h35 size_t content_length; member
/PHP-5.5/sapi/aolserver/
H A Daolserver.c455 SG(request_info).content_length = Ns_ConnContentLength(NSG(conn)); in php_ns_request_ctor()
471 NSG(data_avail) = SG(request_info).content_length; in php_ns_request_ctor()
/PHP-5.5/sapi/apache/
H A Dmod_php5.c523 char *content_length = (char *) table_get(r->subprocess_env, "CONTENT_LENGTH"); in init_request_info() local
532 SG(request_info).content_length = (content_length ? atol(content_length) : 0); in init_request_info()
/PHP-5.5/sapi/apache2filter/
H A Dsapi_apache2.c400 char *content_length; in php_apache_request_ctor() local
421 content_length = (char *) apr_table_get(f->r->headers_in, "Content-Length"); in php_apache_request_ctor()
422 SG(request_info).content_length = (content_length ? atol(content_length) : 0); in php_apache_request_ctor()
/PHP-5.5/sapi/apache2handler/
H A Dsapi_apache2.c473 char *content_length; in php_apache_request_ctor() local
485 content_length = (char *) apr_table_get(r->headers_in, "Content-Length"); in php_apache_request_ctor()
486 SG(request_info).content_length = (content_length ? atol(content_length) : 0); in php_apache_request_ctor()
/PHP-5.5/sapi/apache_hooks/
H A DREADME96 content_length
H A Dmod_php5.c575 char *content_length = (char *) table_get(r->subprocess_env, "CONTENT_LENGTH"); in init_request_info() local
585 SG(request_info).content_length = (content_length ? atol(content_length) : 0); in init_request_info()
H A Dphp_apache.c1314 PHP_FALIAS(content_length, apache_request_content_length, NULL)
/PHP-5.5/sapi/caudium/
H A Dcaudium.c620 SG(request_info).content_length = lookup_integer_header("HTTP_CONTENT_LENGTH", 0); in php_caudium_module_main()
/PHP-5.5/sapi/cgi/
H A Dcgi_main.c511 count_bytes = MIN(count_bytes, (uint) SG(request_info).content_length - SG(read_post_bytes)); in sapi_cgi_read_post()
528 count_bytes = MIN(count_bytes, (uint) SG(request_info).content_length - SG(read_post_bytes)); in sapi_fcgi_read_post()
1158 SG(request_info).content_length = 0;
1167 char *content_length = CGI_GETENV("CONTENT_LENGTH"); local
1424 SG(request_info).content_length = (content_length ? atol(content_length) : 0);

Completed in 156 milliseconds

12