args-https-chunked.pl revision 1.1
1# test chunked https 1.1 connection over http relay
2
3use strict;
4use warnings;
5
6my @lengths = ([ 251, 10000, 10 ], 1, [2, 3]);
7our %args = (
8    client => {
9	func => \&http_client,
10	lengths => \@lengths,
11	ssl => 1,
12    },
13    relayd => {
14	protocol => [ "http",
15	    "request header log foo",
16	    "response header log Transfer-Encoding",
17	],
18	loggrep => { "log 'Transfer-Encoding: chunked'" => 2 },
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