Sign in
apache
/
mod_perl
/
release
/
.
/
2_0_8
/
ModPerl-Registry
/
t
/
cgi-bin
/
nph-foo.pl
blob: 82c1bd7ab89a35bcf7f443c643f54fd9abebccb0 [
file
] [
log
] [
blame
]
#!/usr/bin/perl -w
my
$r
=
shift
;
print
"HTTP/1.0 250 Pretty OK\r\n"
;
print
join
(
"\n"
,
'Content-type: text/text'
,
'Pragma: no-cache'
,
'Cache-control: must-revalidate, no-cache, no-store'
,
'Expires: -1'
,
"\n"
);
print
"non-parsed headers body"
;