blob: 0323385faf94f7f511b675af509f8d4fd6d68791 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# test longer data length
use strict;
use warnings;
our %args = (
client => {
len => 2**16 - 20 - 8 - 1,
sndbuf => 2**16,
},
relay => {
timeout => 10,
size => 2**16,
sndbuf => 2**16,
rcvbuf => 2**16,
},
server => {
num => 1,
rcvbuf => 2**16,
},
len => 65507,
md5 => "20f83f523b6b48b11d9f8a15e507e16a",
);
|