summaryrefslogtreecommitdiff
path: root/regress/sys/kern/splice/args-smallbuf.pl
blob: a554b849c4ffcffb79f0c51d412cb6b9ee79b096 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# test with smaller relay send and receive buffers

use strict;
use warnings;

our %args = (
    client => {
	len => 2**17,
    },
    relay => {
	sndbuf => 2**12,
	rcvbuf => 2**12,
    },
    len => 131072,
    md5 => "31e5ad3d0d2aeb1ad8aaa847dfa665c2",
);

1;