Directory Files
.. 7
File Size
Kconfig 1.0 kB
Makefile 491 B
bpf.c 872 B
crypto.c 2.5 kB
crypto_test.c 1.7 kB
ctrl.c 5.3 kB
diag.c 3.0 kB
fastopen.c 2.1 kB
mib.c 4.4 kB
mib.h 4.8 kB
mptcp_crypto_test.mod.c 0 B
mptcp_diag.c 6.0 kB
mptcp_diag.mod.c 0 B
mptcp_token_test.mod.c 0 B
options.c 47 kB
pm.c 14 kB
pm_netlink.c 61 kB
pm_userspace.c 12 kB
protocol.c 105 kB
protocol.h 34 kB
sched.c 3.8 kB
sockopt.c 37 kB
subflow.c 58 kB
syncookies.c 3.8 kB
token.c 11 kB
token_test.c 4.2 kB

Linux v6.6.1 - mptcp


config MPTCP
	bool "MPTCP: Multipath TCP"
	depends on INET
	select SKB_EXTENSIONS
	select CRYPTO_LIB_SHA256
	select CRYPTO
	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.

if MPTCP

config INET_MPTCP_DIAG
	depends on INET_DIAG
	def_tristate INET_DIAG

config MPTCP_IPV6
	bool "MPTCP: IPv6 support for Multipath TCP"
	depends on IPV6=y
	default y

config MPTCP_KUNIT_TEST
	tristate "This builds the MPTCP KUnit tests" if !KUNIT_ALL_TESTS
	depends on KUNIT
	default KUNIT_ALL_TESTS
	help
	  Currently covers the MPTCP crypto and token helpers.
	  Only useful for kernel devs running KUnit test harness and are not
	  for inclusion into a production build.

	  For more information on KUnit and unit tests in general please refer
	  to the KUnit documentation in Documentation/dev-tools/kunit/.

	  If unsure, say N.

endif