2020-01-21 16:56:15 -08:00
|
|
|
|
|
|
|
config MPTCP
|
|
|
|
bool "MPTCP: Multipath TCP"
|
|
|
|
depends on INET
|
|
|
|
select SKB_EXTENSIONS
|
2020-01-21 16:56:30 -08:00
|
|
|
select CRYPTO_LIB_SHA256
|
2020-02-15 15:45:56 +01:00
|
|
|
select CRYPTO
|
2020-01-21 16:56:15 -08:00
|
|
|
help
|
|
|
|
Multipath TCP (MPTCP) connections send and receive data over multiple
|
|
|
|
subflows in order to utilize multiple network paths. Each subflow
|
|
|
|
uses the TCP protocol, and TCP options carry header information for
|
|
|
|
MPTCP.
|
|
|
|
|
2020-01-29 19:02:24 +01:00
|
|
|
if MPTCP
|
|
|
|
|
2020-07-09 15:12:41 +02:00
|
|
|
config INET_MPTCP_DIAG
|
|
|
|
depends on INET_DIAG
|
|
|
|
def_tristate INET_DIAG
|
|
|
|
|
2020-01-21 16:56:15 -08:00
|
|
|
config MPTCP_IPV6
|
|
|
|
bool "MPTCP: IPv6 support for Multipath TCP"
|
2020-10-21 12:51:53 +02:00
|
|
|
depends on IPV6=y
|
2020-01-21 16:56:15 -08:00
|
|
|
default y
|
2020-01-21 16:56:30 -08:00
|
|
|
|
2021-04-16 15:38:01 -07:00
|
|
|
config MPTCP_KUNIT_TEST
|
2020-06-26 19:30:01 +02:00
|
|
|
tristate "This builds the MPTCP KUnit tests" if !KUNIT_ALL_TESTS
|
|
|
|
depends on KUNIT
|
|
|
|
default KUNIT_ALL_TESTS
|
2020-01-21 16:56:30 -08:00
|
|
|
help
|
2020-06-26 19:30:02 +02:00
|
|
|
Currently covers the MPTCP crypto and token helpers.
|
2020-06-26 19:30:01 +02:00
|
|
|
Only useful for kernel devs running KUnit test harness and are not
|
|
|
|
for inclusion into a production build.
|
2020-01-21 16:56:30 -08:00
|
|
|
|
2020-06-26 19:30:01 +02:00
|
|
|
For more information on KUnit and unit tests in general please refer
|
|
|
|
to the KUnit documentation in Documentation/dev-tools/kunit/.
|
|
|
|
|
|
|
|
If unsure, say N.
|
2020-01-29 19:02:24 +01:00
|
|
|
|
2020-10-19 13:32:40 +02:00
|
|
|
endif
|