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