blob: 5db56d2218c518c854020a8e87a3d9a2163c5c77 [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
Mat Martineauf870fa02020-01-21 16:56:15 -08007 help
8 Multipath TCP (MPTCP) connections send and receive data over multiple
9 subflows in order to utilize multiple network paths. Each subflow
10 uses the TCP protocol, and TCP options carry header information for
11 MPTCP.
12
13config MPTCP_IPV6
14 bool "MPTCP: IPv6 support for Multipath TCP"
15 depends on MPTCP
16 select IPV6
17 default y
Paolo Abeni65492c52020-01-21 16:56:30 -080018
19config MPTCP_HMAC_TEST
20 bool "Tests for MPTCP HMAC implementation"
21 default n
22 help
23 This option enable boot time self-test for the HMAC implementation
24 used by the MPTCP code
25
26 Say N if you are unsure.