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