blob: 8a90b2fba766317208e63a7f016e3fc423b73049 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
foreach $i (1..50) {
print <<EOT1
HTTP/1.1 100 Continue
Server: Sausages/1.0
EOT1
;
}
print <<EOT2
HTTP/1.1 200 OK
Content-Type: text/html
Hello world
EOT2
;
|