summaryrefslogtreecommitdiff
path: root/tests/docroot/www/sendfile.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/docroot/www/sendfile.php')
-rw-r--r--tests/docroot/www/sendfile.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/docroot/www/sendfile.php b/tests/docroot/www/sendfile.php
new file mode 100644
index 00000000..0aa8786f
--- /dev/null
+++ b/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 ($_GET["range2"]) $val .= ", " . pathencode(getcwd() . "/index.txt") . " " . $_GET["range2"];
+
+header($val);
+
+?> \ No newline at end of file