xref: /openbmc/linux/net/mptcp/Kconfig (revision ca64d84e)
1
2config MPTCP
3	bool "MPTCP: Multipath TCP"
4	depends on INET
5	select SKB_EXTENSIONS
6	select CRYPTO_LIB_SHA256
7	select CRYPTO
8	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
14if MPTCP
15
16config MPTCP_IPV6
17	bool "MPTCP: IPv6 support for Multipath TCP"
18	select IPV6
19	default y
20
21config MPTCP_HMAC_TEST
22	bool "Tests for MPTCP HMAC implementation"
23	help
24	  This option enable boot time self-test for the HMAC implementation
25	  used by the MPTCP code
26
27	  Say N if you are unsure.
28
29endif
30