@@ -309,6 +309,17 @@ FIXTURE_VARIANT_ADD(protocol, no_sandbox_with_ipv6_tcp) {
309
309
},
310
310
};
311
311
312
+ /* clang-format off */
313
+ FIXTURE_VARIANT_ADD (protocol , no_sandbox_with_ipv4_mptcp ) {
314
+ /* clang-format on */
315
+ .sandbox = NO_SANDBOX ,
316
+ .prot = {
317
+ .domain = AF_INET ,
318
+ .type = SOCK_STREAM ,
319
+ .protocol = IPPROTO_MPTCP ,
320
+ },
321
+ };
322
+
312
323
/* clang-format off */
313
324
FIXTURE_VARIANT_ADD (protocol , no_sandbox_with_ipv4_udp ) {
314
325
/* clang-format on */
@@ -329,6 +340,17 @@ FIXTURE_VARIANT_ADD(protocol, no_sandbox_with_ipv6_udp) {
329
340
},
330
341
};
331
342
343
+ /* clang-format off */
344
+ FIXTURE_VARIANT_ADD (protocol , no_sandbox_with_ipv6_mptcp ) {
345
+ /* clang-format on */
346
+ .sandbox = NO_SANDBOX ,
347
+ .prot = {
348
+ .domain = AF_INET6 ,
349
+ .type = SOCK_STREAM ,
350
+ .protocol = IPPROTO_MPTCP ,
351
+ },
352
+ };
353
+
332
354
/* clang-format off */
333
355
FIXTURE_VARIANT_ADD (protocol , no_sandbox_with_unix_stream ) {
334
356
/* clang-format on */
@@ -389,6 +411,17 @@ FIXTURE_VARIANT_ADD(protocol, tcp_sandbox_with_ipv6_udp) {
389
411
},
390
412
};
391
413
414
+ /* clang-format off */
415
+ FIXTURE_VARIANT_ADD (protocol , tcp_sandbox_with_ipv4_mptcp ) {
416
+ /* clang-format on */
417
+ .sandbox = TCP_SANDBOX ,
418
+ .prot = {
419
+ .domain = AF_INET ,
420
+ .type = SOCK_STREAM ,
421
+ .protocol = IPPROTO_MPTCP ,
422
+ },
423
+ };
424
+
392
425
/* clang-format off */
393
426
FIXTURE_VARIANT_ADD (protocol , tcp_sandbox_with_unix_stream ) {
394
427
/* clang-format on */
@@ -399,6 +432,17 @@ FIXTURE_VARIANT_ADD(protocol, tcp_sandbox_with_unix_stream) {
399
432
},
400
433
};
401
434
435
+ /* clang-format off */
436
+ FIXTURE_VARIANT_ADD (protocol , tcp_sandbox_with_ipv6_mptcp ) {
437
+ /* clang-format on */
438
+ .sandbox = TCP_SANDBOX ,
439
+ .prot = {
440
+ .domain = AF_INET6 ,
441
+ .type = SOCK_STREAM ,
442
+ .protocol = IPPROTO_MPTCP ,
443
+ },
444
+ };
445
+
402
446
/* clang-format off */
403
447
FIXTURE_VARIANT_ADD (protocol , tcp_sandbox_with_unix_datagram ) {
404
448
/* clang-format on */
0 commit comments