Sign in
apache
/
httpd-tests
/
refs/heads/trunk
/
.
/
t
/
htdocs
/
modules
/
cgi
/
nph-foldhdr.pl.PL
blob: 67d7e9f04e9d7e72313b8c4269d8b7bba2e975d2 [
file
]
# produces output with folded response headers
print
"HTTP/1.0 200 OK\r\n"
;
for
(
1.
.
50
)
{
print
"X-Foo-Bar-$_:\n "
.
'x'
x
(
$_
*
10
)
.
"\n"
;
print
"X-Bar-$_:\n gamm\r\n beta\n theta\r\n"
;
}
print
"Content-type: \n text/plain\n\n"
;
print
"hello, world"
;