forked from Minki/linux
65492c5a6a
For simplicity's sake use directly sha256 primitives (and pull them as a required build dep). Add optional, boot-time self-tests for the hmac function. Signed-off-by: Paolo Abeni <pabeni@redhat.com> Signed-off-by: Christoph Paasch <cpaasch@apple.com> Signed-off-by: David S. Miller <davem@davemloft.net>
27 lines
655 B
Plaintext
27 lines
655 B
Plaintext
|
|
config MPTCP
|
|
bool "MPTCP: Multipath TCP"
|
|
depends on INET
|
|
select SKB_EXTENSIONS
|
|
select CRYPTO_LIB_SHA256
|
|
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.
|
|
|
|
config MPTCP_IPV6
|
|
bool "MPTCP: IPv6 support for Multipath TCP"
|
|
depends on MPTCP
|
|
select IPV6
|
|
default y
|
|
|
|
config MPTCP_HMAC_TEST
|
|
bool "Tests for MPTCP HMAC implementation"
|
|
default n
|
|
help
|
|
This option enable boot time self-test for the HMAC implementation
|
|
used by the MPTCP code
|
|
|
|
Say N if you are unsure.
|