1# test maximum data length,
2# client sleeps before writing,
3# relay is non-blocking
4
5use strict;
6use warnings;
7
8our %args = (
9    client => {
10	func => sub { sleep 3; write_stream(@_); },
11	nocheck => 1,
12    },
13    relay => {
14	max => 113,
15	big => 1,
16	nonblocking => 1,
17    },
18    len => 113,
19    md5 => "dc099ef642faa02bce71298f11e7d44d",
20);
21