1# test inline out-of-band data when reverse sending with non-blocking relay 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 nonblocking => 1, 15 }, 16 server => { 17 func => \&write_oob, 18 }, 19 len => 251, 20 md5 => [ 21 "24b69642243fee9834bceee5b47078ae", 22 "5aa8135a1340e173a7d7a5fa048a999e", 23 "e5be513d9d2b877b6841bbb4790c67dc", 24 "5cf8c3fd08f541ae07361a11f17213fe", 25 "8d509bd55cfabd400403d857386b4956", 26 ], 27); 28