blob: 37f2d90fce4848833007437f655edc90b548c0a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# test with smaller relay send and receive buffers
use strict;
use warnings;
our %args = (
client => {
len => 2**17,
},
relay => {
rcvbuf => 2**12,
sndbuf => 2**12,
},
len => 131072,
md5 => "31e5ad3d0d2aeb1ad8aaa847dfa665c2",
);
|