args-max-sleep-client-nonblock.pl revision 1.1
1# test maximum data length with delay before client write with non-blocking relay
2
3use strict;
4use warnings;
5
6our %args = (
7    client => {
8	func => sub { sleep 3; write_stream(@_); },
9	nocheck => 1,
10    },
11    relay => {
12	max => 113,
13	nonblocking => 1,
14    },
15    len => 113,
16    md5 => "dc099ef642faa02bce71298f11e7d44d",
17);
18