1# test inline out-of-band data with maximum data length delay before server 2 3use strict; 4use warnings; 5 6our %args = ( 7 client => { 8 func => sub { errignore(@_); write_oob(@_); }, 9 nocheck => 1, 10 }, 11 relay => { 12 oobinline => 1, 13 max => 61, 14 }, 15 server => { 16 func => sub { sleep 3; read_oob(@_); }, 17 }, 18 len => 61, 19 md5 => [ 20 "c9f459db9b4f369980c79bff17e1c2a0", 21 "4b5efc5f86fa5fc873c82103ceece85d", 22 ], 23 noecho => 1, 24); 25