Plack-Handler-AnyEvent-HTTPD
view release on metacpan or search on metacpan
lib/Plack/Handler/AnyEvent/HTTPD.pm view on Meta::CPAN
SCRIPT_NAME => '',
REQUEST_METHOD => $meth,
PATH_INFO => URI::Escape::uri_unescape($path_info),
REQUEST_URI => $url,
QUERY_STRING => $query,
SERVER_PROTOCOL => 'HTTP/1.0', # no way to get this from HTTPConnection
'psgi.version' => [ 1, 1 ],
'psgi.errors' => *STDERR,
'psgi.url_scheme' => 'http',
'psgi.nonblocking' => Plack::Util::TRUE,
'psgi.streaming' => Plack::Util::TRUE,
'psgi.run_once' => Plack::Util::FALSE,
'psgi.multithread' => Plack::Util::FALSE,
'psgi.multiprocess' => Plack::Util::FALSE,
'psgi.input' => do {
open my $input, "<", \(ref $cont ? '' : $cont);
$input;
},
'psgix.io' => $con->{fh},
};
( run in 0.325 second using v1.01-cache-2.11-cpan-4d50c553e7e )