blob: a014149aa3233831cdf40a47e8b327f8a46d669d [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"
Matthieu Baerts0ed37ac2020-10-21 12:51:53 +020022 depends on IPV6=y
Mat Martineauf870fa02020-01-21 16:56:15 -080023 default y
Paolo Abeni65492c52020-01-21 16:56:30 -080024
Paolo Abenia00a5822020-06-26 19:30:01 +020025config MPTCP_KUNIT_TESTS
26 tristate "This builds the MPTCP KUnit tests" if !KUNIT_ALL_TESTS
Paolo Abenia00a5822020-06-26 19:30:01 +020027 depends on KUNIT
28 default KUNIT_ALL_TESTS
29 help
Paolo Abenia8ee9c92020-06-26 19:30:02 +020030 Currently covers the MPTCP crypto and token helpers.
Paolo Abenia00a5822020-06-26 19:30:01 +020031 Only useful for kernel devs running KUnit test harness and are not
32 for inclusion into a production build.
33
34 For more information on KUnit and unit tests in general please refer
35 to the KUnit documentation in Documentation/dev-tools/kunit/.
36
37 If unsure, say N.
38
Geert Uytterhoevenb1420832020-10-19 13:32:40 +020039endif