blob: 698bc35251609755c147a94f25e34981681ca119 [file] [log] [blame]
Mat Martineauf870fa02020-01-21 16:56:15 -08001
2config MPTCP
3 bool "MPTCP: Multipath TCP"
4 depends on INET
5 select SKB_EXTENSIONS
Paolo Abeni65492c52020-01-21 16:56:30 -08006 select CRYPTO_LIB_SHA256
Matthieu Baerts357b41c2020-02-15 15:45:56 +01007 select CRYPTO
Mat Martineauf870fa02020-01-21 16:56:15 -08008 help
9 Multipath TCP (MPTCP) connections send and receive data over multiple
10 subflows in order to utilize multiple network paths. Each subflow
11 uses the TCP protocol, and TCP options carry header information for
12 MPTCP.
13
Geert Uytterhoeven389b8fb32020-01-29 19:02:24 +010014if MPTCP
15
Paolo Abeniac3b45f2020-07-09 15:12:41 +020016config INET_MPTCP_DIAG
17 depends on INET_DIAG
18 def_tristate INET_DIAG
19
Mat Martineauf870fa02020-01-21 16:56:15 -080020config MPTCP_IPV6
21 bool "MPTCP: IPv6 support for Multipath TCP"
Mat Martineauf870fa02020-01-21 16:56:15 -080022 select IPV6
23 default y
Paolo Abeni65492c52020-01-21 16:56:30 -080024
Geert Uytterhoeven389b8fb32020-01-29 19:02:24 +010025endif
Paolo Abenia00a5822020-06-26 19:30:01 +020026
27config MPTCP_KUNIT_TESTS
28 tristate "This builds the MPTCP KUnit tests" if !KUNIT_ALL_TESTS
29 select MPTCP
30 depends on KUNIT
31 default KUNIT_ALL_TESTS
32 help
Paolo Abenia8ee9c92020-06-26 19:30:02 +020033 Currently covers the MPTCP crypto and token helpers.
Paolo Abenia00a5822020-06-26 19:30:01 +020034 Only useful for kernel devs running KUnit test harness and are not
35 for inclusion into a production build.
36
37 For more information on KUnit and unit tests in general please refer
38 to the KUnit documentation in Documentation/dev-tools/kunit/.
39
40 If unsure, say N.
41