2020-01-22 08:56:15 +08:00
|
|
|
|
|
|
|
config MPTCP
|
|
|
|
bool "MPTCP: Multipath TCP"
|
|
|
|
depends on INET
|
|
|
|
select SKB_EXTENSIONS
|
2020-01-22 08:56:30 +08:00
|
|
|
select CRYPTO_LIB_SHA256
|
2020-02-15 22:45:56 +08:00
|
|
|
select CRYPTO
|
2020-01-22 08: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-30 02:02:24 +08:00
|
|
|
if MPTCP
|
|
|
|
|
2020-07-09 21:12:41 +08:00
|
|
|
config INET_MPTCP_DIAG
|
|
|
|
depends on INET_DIAG
|
|
|
|
def_tristate INET_DIAG
|
|
|
|
|
2020-01-22 08:56:15 +08:00
|
|
|
config MPTCP_IPV6
|
|
|
|
bool "MPTCP: IPv6 support for Multipath TCP"
|
2020-10-21 18:51:53 +08:00
|
|
|
depends on IPV6=y
|
2020-01-22 08:56:15 +08:00
|
|
|
default y
|
2020-01-22 08:56:30 +08:00
|
|
|
|
2021-04-17 06:38:01 +08:00
|
|
|
config MPTCP_KUNIT_TEST
|
2020-06-27 01:30:01 +08:00
|
|
|
tristate "This builds the MPTCP KUnit tests" if !KUNIT_ALL_TESTS
|
|
|
|
depends on KUNIT
|
|
|
|
default KUNIT_ALL_TESTS
|
2020-01-22 08:56:30 +08:00
|
|
|
help
|
2020-06-27 01:30:02 +08:00
|
|
|
Currently covers the MPTCP crypto and token helpers.
|
2020-06-27 01:30:01 +08:00
|
|
|
Only useful for kernel devs running KUnit test harness and are not
|
|
|
|
for inclusion into a production build.
|
2020-01-22 08:56:30 +08:00
|
|
|
|
2020-06-27 01:30:01 +08: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-30 02:02:24 +08:00
|
|
|
|
2020-10-19 19:32:40 +08:00
|
|
|
endif
|