summaryrefslogtreecommitdiff
path: root/regress/sys/kern/splice/args-oobinline-reverse.pl
blob: 4a570b3e5bf4f5f00ed1931f0ca358fb82961880 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# test inline out-of-band data when reverse sending

use strict;
use warnings;

our %args = (
    client => {
	func => \&read_oob,
	oobinline => 1,
    },
    relay => {
	func => sub { ioflip(@_); relay(@_); },
	oobinline => 1,
    },
    server => {
	func => \&write_oob,
    },
    len => 251,
    md5 => "24b69642243fee9834bceee5b47078ae",
);

1;