diff options
Diffstat (limited to 'data/lighttpd/lighttpd-1.4.53/tests/docroot/www/sendfile.php')
-rw-r--r-- | data/lighttpd/lighttpd-1.4.53/tests/docroot/www/sendfile.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/data/lighttpd/lighttpd-1.4.53/tests/docroot/www/sendfile.php b/data/lighttpd/lighttpd-1.4.53/tests/docroot/www/sendfile.php new file mode 100644 index 000000000..e46022034 --- /dev/null +++ b/data/lighttpd/lighttpd-1.4.53/tests/docroot/www/sendfile.php @@ -0,0 +1,13 @@ +<?php + +function pathencode($path) { + return str_replace(',', '%2c', urlencode($path)); +} + +$val = "X-Sendfile2: " . pathencode(getcwd() . "/index.txt") . " " . $_GET["range"]; + +if (isset($_GET["range2"])) $val .= ", " . pathencode(getcwd() . "/index.txt") . " " . $_GET["range2"]; + +header($val); + +?>
\ No newline at end of file |