summaryrefslogtreecommitdiffstats
path: root/regress/sys/kern/sosplice/tcp/args-oob-max.pl
blob: a46786338bae6b46ff6fce82149e2295b93cf1bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# test out-of-band data with maximum data length

use strict;
use warnings;

our %args = (
    client => {
	func => sub { errignore(@_); write_oob(@_); },
	nocheck => 1,
    },
    relay => {
	max => 61,
	nocheck => 1,
    },
    server => {
	func => \&read_oob,
    },
    len => 61,
    md5 => "e4282daf8d2ca21cc8b70b1314713314",
    noecho => 1,
);