blob: 8d8beac72deb17eb6220b9dbc52600c91cb48b77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# test maximum data length
use strict;
use warnings;
our %args = (
client => {
lengths => [ 1, 3, 1 ],
func => sub { errignore(@_); write_datagram(@_); },
nocheck => 1,
},
relay => {
max => 4,
},
server => {
num => 2,
},
len => 4,
lengths => "1 3",
md5 => "07515c3ca1f21779d63135eb5531eca2",
);
|