1# test 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	max => 61,
13    },
14    server => {
15	func => sub { sleep 3; read_oob(@_); },
16    },
17    len => 61,
18    md5 => "e4282daf8d2ca21cc8b70b1314713314",
19    noecho => 1,
20);
21