1# test persistent http 1.1 connection over http relay 2 3use strict; 4use warnings; 5 6my @lengths = (251, 16384, 0, 1, 2, 3, 4, 5); 7our %args = ( 8 client => { 9 func => \&http_client, 10 lengths => \@lengths, 11 }, 12 relayd => { 13 protocol => [ "http", 14 "request header log foo", 15 "response header log bar", 16 ], 17 }, 18 server => { 19 func => \&http_server, 20 }, 21 lengths => \@lengths, 22 md5 => "bc3a3f39af35fe5b1687903da2b00c7f", 23); 24 251; 26