summaryrefslogblamecommitdiffhomepage
path: root/test/perl/header_equal_names/psgi.pl
blob: 70bc8aa6299f8864ea3b220cecda093b08ebcaf4 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                           
my $app = sub {
    my ($environ) = @_;

    return ['200', [
        'Content-Length' => 0,
        'Set-Cookie' => 'tc=one,two,three',
        'Set-Cookie' => 'tc=four,five,six'
    ], []];
};