blob: cd2abae0b6edd8bd948cdbc36326dc1e3e7eb977 (
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;
our %args = (
client => {
path => $len,
http_vers => [ "1.1" ],
code => "206 Partial Content",
header => {
"Range" => "bytes=0-255,256-300,301-",
},
multipart => 1
},
len => $len,
md5 => path_md5("$len")
);
1;
|