1# test reverse sending from server to client
2
3use strict;
4use warnings;
5
6our %args = (
7    client => {
8	func => \&read_stream,
9    },
10    relay => {
11	func => sub { ioflip(@_); relay(@_); },
12    },
13    server => {
14	func => \&write_stream,
15    },
16    len => 251,
17    md5 => "bc3a3f39af35fe5b1687903da2b00c7f",
18);
19