From 326d4c7836f3fd67d56cefb373c70a9d1a48c827 Mon Sep 17 00:00:00 2001 From: Christoph Paasch Date: Fri, 24 Jan 2020 15:17:36 +0000 Subject: sys/linux: add IPPROTO_MPTCP support Adding support for IPPROTO_MPTCP. Like SMC, it is on top of TCP and can thus be treated like a regular TCP socket. --- sys/linux/socket_inet_tcp.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sys/linux/socket_inet_tcp.txt') diff --git a/sys/linux/socket_inet_tcp.txt b/sys/linux/socket_inet_tcp.txt index 215e1ad64..42993e62e 100644 --- a/sys/linux/socket_inet_tcp.txt +++ b/sys/linux/socket_inet_tcp.txt @@ -12,6 +12,7 @@ include resource sock_tcp[sock_in] socket$inet_tcp(domain const[AF_INET], type const[SOCK_STREAM], proto const[0]) sock_tcp +socket$inet_mptcp(domain const[AF_INET], type const[SOCK_STREAM], proto const[262]) sock_tcp # From interface point of view SMC sockets seem to be the same as TCP. socket$inet_smc(domain const[AF_SMC], type const[SOCK_STREAM], proto const[0]) sock_tcp @@ -19,6 +20,7 @@ socket$inet_smc(domain const[AF_SMC], type const[SOCK_STREAM], proto const[0]) s resource sock_tcp6[sock_in6] socket$inet6_tcp(domain const[AF_INET6], type const[SOCK_STREAM], proto const[0]) sock_tcp6 +socket$inet6_mptcp(domain const[AF_INET6], type const[SOCK_STREAM], proto const[262]) sock_tcp6 # Generic TCP socket options -- cgit mrf-deployment