@@ -312,6 +312,17 @@ FIXTURE_VARIANT_ADD(protocol, no_sandbox_with_ipv4_tcp2) {
312
312
},
313
313
};
314
314
315
+ /* clang-format off */
316
+ FIXTURE_VARIANT_ADD (protocol , no_sandbox_with_ipv4_mptcp ) {
317
+ /* clang-format on */
318
+ .sandbox = NO_SANDBOX ,
319
+ .prot = {
320
+ .domain = AF_INET ,
321
+ .type = SOCK_STREAM ,
322
+ .protocol = IPPROTO_MPTCP ,
323
+ },
324
+ };
325
+
315
326
/* clang-format off */
316
327
FIXTURE_VARIANT_ADD (protocol , no_sandbox_with_ipv6_tcp1 ) {
317
328
/* clang-format on */
@@ -335,6 +346,17 @@ FIXTURE_VARIANT_ADD(protocol, no_sandbox_with_ipv6_tcp2) {
335
346
},
336
347
};
337
348
349
+ /* clang-format off */
350
+ FIXTURE_VARIANT_ADD (protocol , no_sandbox_with_ipv6_mptcp ) {
351
+ /* clang-format on */
352
+ .sandbox = NO_SANDBOX ,
353
+ .prot = {
354
+ .domain = AF_INET6 ,
355
+ .type = SOCK_STREAM ,
356
+ .protocol = IPPROTO_MPTCP ,
357
+ },
358
+ };
359
+
338
360
/* clang-format off */
339
361
FIXTURE_VARIANT_ADD (protocol , no_sandbox_with_ipv4_udp ) {
340
362
/* clang-format on */
@@ -398,6 +420,17 @@ FIXTURE_VARIANT_ADD(protocol, tcp_sandbox_with_ipv4_tcp2) {
398
420
},
399
421
};
400
422
423
+ /* clang-format off */
424
+ FIXTURE_VARIANT_ADD (protocol , tcp_sandbox_with_ipv4_mptcp ) {
425
+ /* clang-format on */
426
+ .sandbox = TCP_SANDBOX ,
427
+ .prot = {
428
+ .domain = AF_INET ,
429
+ .type = SOCK_STREAM ,
430
+ .protocol = IPPROTO_MPTCP ,
431
+ },
432
+ };
433
+
401
434
/* clang-format off */
402
435
FIXTURE_VARIANT_ADD (protocol , tcp_sandbox_with_ipv6_tcp1 ) {
403
436
/* clang-format on */
@@ -421,6 +454,17 @@ FIXTURE_VARIANT_ADD(protocol, tcp_sandbox_with_ipv6_tcp2) {
421
454
},
422
455
};
423
456
457
+ /* clang-format off */
458
+ FIXTURE_VARIANT_ADD (protocol , tcp_sandbox_with_ipv6_mptcp ) {
459
+ /* clang-format on */
460
+ .sandbox = TCP_SANDBOX ,
461
+ .prot = {
462
+ .domain = AF_INET6 ,
463
+ .type = SOCK_STREAM ,
464
+ .protocol = IPPROTO_MPTCP ,
465
+ },
466
+ };
467
+
424
468
/* clang-format off */
425
469
FIXTURE_VARIANT_ADD (protocol , tcp_sandbox_with_ipv4_udp ) {
426
470
/* clang-format on */
0 commit comments