1# test idle timeout, must not be too long 2 3use strict; 4use warnings; 5 6my @lengths = (1, 2); 7 8our %args = ( 9 client => { 10 func => sub { sleep 1; write_datagram(@_); }, 11 lengths => \@lengths, 12 sleep => 3, 13 nocheck => 1, 14 }, 15 relay => { 16 idle => 2, 17 timeout => 1, 18 }, 19 len => 1, 20 lengths => "1", 21 md5 => "68b329da9893e34099c7d8ad5cb9c940", 22); 23