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