1# test inline out-of-band data with non-blocking relay
2
3use strict;
4use warnings;
5
6our %args = (
7    client => {
8	func => \&write_oob,
9    },
10    relay => {
11	oobinline => 1,
12	nonblocking => 1,
13    },
14    server => {
15	func => \&read_oob,
16	oobinline => 1,
17    },
18    len => 251,
19    md5 => [
20	"24b69642243fee9834bceee5b47078ae",
21	"5aa8135a1340e173a7d7a5fa048a999e",
22	"e5be513d9d2b877b6841bbb4790c67dc",
23	"5cf8c3fd08f541ae07361a11f17213fe",
24	"8d509bd55cfabd400403d857386b4956",
25    ],
26);
27