Sign in
apache
/
httpd-tests
/
refs/heads/trunk
/
.
/
t
/
htdocs
/
modules
/
cgi
/
ranged.pl.PL
blob: 9d81f5df97a3b4c9131e654d5341befd94151863 [
file
]
use
strict
;
print
"Content-type: text/plain\n"
;
if
(
$ENV
{
'HTTP_RANGE'
}
eq
'bytes=5-10/10'
)
{
print
"Content-Range: bytes 5-10/10\n\n"
;
print
"hello\n"
;
}
else
{
print
"\npardon?\n"
;
}