1# test maximum data length with empty client write,
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	len => 0,
12    },
13    relay => {
14	max => 113,
15	nomax => 1,
16	nonblocking => 1,
17    },
18    len => 0,
19    md5 => "d41d8cd98f00b204e9800998ecf8427e",
20);
21