1use strict;
2use warnings;
3
4my $name = "Set-Cookie";
5my %header = ("$name" => [ "test=a;", "test=b;" ]);
6our %args = (
7    client => {
8	func => \&http_client,
9	loggrep => {
10		qr/$name: test=c/ => 1,
11	}
12    },
13    relayd => {
14	protocol => [ "http",
15	    'match response header set "'.$name.'" value "test=c"',
16	],
17    },
18    server => {
19	func => \&http_server,
20	header => \%header,
21	loggrep => {
22		qr/$name: test=a/ => 1
23	},
24    },
25);
26
271;
28