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 }, 15 len => $len, 16 md5 => path_md5("$len") 17); 18 191; 20