args-https-persistent.pl revision 1.5
1# test persistent https 1.1 connection over http relay
2
3use strict;
4use warnings;
5
6my @lengths = (251, 16384, 0, 1, 2, 3, 4, 5);
7our %args = (
8    client => {
9	func => \&http_client,
10	lengths => \@lengths,
11	ssl => 1,
12    },
13    relayd => {
14	protocol => [ "http",
15	    "match request header log foo",
16	    "match response header log bar",
17	],
18	loggrep => qr/\, done/,
19	forwardssl => 1,
20	listenssl => 1,
21    },
22    server => {
23	func => \&http_server,
24	ssl => 1,
25    },
26    lengths => \@lengths,
27    md5 => "bc3a3f39af35fe5b1687903da2b00c7f",
28);
29
301;
31