Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 449bc2c52128e77c3c0d58150afb6f4e > files > 113

perl-Plack-1.2.900-2.mga4.noarch.rpm

use File::Basename;
my $path = $ENV{PSGI_IMAGE_FILE} || dirname(__FILE__) . "/../../share/baybridge.jpg";
my $handler = sub {
    open my $fh, "<:raw", $path or die $!;
    return [ 200, [ "Content-Type" => "image/jpeg", "X-Sendfile" => $path, "Content-Length" => -s $fh ], $fh ];
};