blob: d9005e6f00f33b767ce3b0ea8e40e0d76ffc29af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# test reverse sending from server to client
use strict;
use warnings;
our %args = (
client => {
func => \&read_char,
},
server => {
func => \&write_char,
},
len => 251,
md5 => "bc3a3f39af35fe5b1687903da2b00c7f",
);
1;
|