1# test inline out-of-band data when reverse sending 2 3use strict; 4use warnings; 5 6our %args = ( 7 client => { 8 func => \&read_oob, 9 oobinline => 1, 10 }, 11 relay => { 12 func => sub { ioflip(@_); relay(@_); }, 13 oobinline => 1, 14 }, 15 server => { 16 func => \&write_oob, 17 }, 18 len => 251, 19 md5 => [ 20 "24b69642243fee9834bceee5b47078ae", 21 "5aa8135a1340e173a7d7a5fa048a999e", 22 "e5be513d9d2b877b6841bbb4790c67dc", 23 "5cf8c3fd08f541ae07361a11f17213fe", 24 "8d509bd55cfabd400403d857386b4956", 25 ], 26); 27