blob: 67d7e9f04e9d7e72313b8c4269d8b7bba2e975d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# 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";
|