Kconfig (8dd06ef34b6e2f41b29fbf5fc1663780f2524285) | Kconfig (a00a582203dbc43ea311a50e979038fc0c8ee19f) |
---|---|
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 --- 4 unchanged lines hidden (view full) --- 13 14if MPTCP 15 16config MPTCP_IPV6 17 bool "MPTCP: IPv6 support for Multipath TCP" 18 select IPV6 19 default y 20 | 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 --- 4 unchanged lines hidden (view full) --- 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" | 21endif 22 23config MPTCP_KUNIT_TESTS 24 tristate "This builds the MPTCP KUnit tests" if !KUNIT_ALL_TESTS 25 select MPTCP 26 depends on KUNIT 27 default KUNIT_ALL_TESTS |
23 help | 28 help |
24 This option enable boot time self-test for the HMAC implementation 25 used by the MPTCP code | 29 Currently covers the MPTCP crypto helpers. 30 Only useful for kernel devs running KUnit test harness and are not 31 for inclusion into a production build. |
26 | 32 |
27 Say N if you are unsure. | 33 For more information on KUnit and unit tests in general please refer 34 to the KUnit documentation in Documentation/dev-tools/kunit/. |
28 | 35 |
29endif | 36 If unsure, say N. 37 |