1use strict;
2use warnings;
3
4my $len = 512;
5my $path = 1048576;
6our %args = (
7    client => {
8	path => $path,
9	http_vers => [ "1.1" ],
10	code => "206 Partial Content",
11	header => {
12		"Range" => "bytes=0-511",
13	},
14	tls => 1
15    },
16    httpd => {
17	listentls => 1
18    },
19    len => $len,
20    md5 => path_md5("$len")
21);
22
231;
24