diff options
| author | Christoph Paasch <christoph.paasch@gmail.com> | 2020-01-24 15:17:36 +0000 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-02-01 11:14:31 +0100 |
| commit | 326d4c7836f3fd67d56cefb373c70a9d1a48c827 (patch) | |
| tree | 8b813ce570616ebde25d17989f7ce25ee5926ad8 /executor/syscalls.h | |
| parent | 0eb59c27682ecbe1d467de4c4accbb3f9c807042 (diff) | |
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.
Diffstat (limited to 'executor/syscalls.h')
| -rw-r--r-- | executor/syscalls.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/executor/syscalls.h b/executor/syscalls.h index 4e935f432..e4d2247a3 100644 --- a/executor/syscalls.h +++ b/executor/syscalls.h @@ -4913,6 +4913,7 @@ const call_t syscalls[] = { {"socket$inet6_dccp", 359}, {"socket$inet6_icmp", 359}, {"socket$inet6_icmp_raw", 359}, + {"socket$inet6_mptcp", 359}, {"socket$inet6_sctp", 359}, {"socket$inet6_tcp", 359}, {"socket$inet6_udp", 359}, @@ -4920,6 +4921,7 @@ const call_t syscalls[] = { {"socket$inet_dccp", 359}, {"socket$inet_icmp", 359}, {"socket$inet_icmp_raw", 359}, + {"socket$inet_mptcp", 359}, {"socket$inet_sctp", 359}, {"socket$inet_smc", 359}, {"socket$inet_tcp", 359}, @@ -8211,6 +8213,7 @@ const call_t syscalls[] = { {"socket$inet6_dccp", 41}, {"socket$inet6_icmp", 41}, {"socket$inet6_icmp_raw", 41}, + {"socket$inet6_mptcp", 41}, {"socket$inet6_sctp", 41}, {"socket$inet6_tcp", 41}, {"socket$inet6_udp", 41}, @@ -8218,6 +8221,7 @@ const call_t syscalls[] = { {"socket$inet_dccp", 41}, {"socket$inet_icmp", 41}, {"socket$inet_icmp_raw", 41}, + {"socket$inet_mptcp", 41}, {"socket$inet_sctp", 41}, {"socket$inet_smc", 41}, {"socket$inet_tcp", 41}, @@ -11460,6 +11464,7 @@ const call_t syscalls[] = { {"socket$inet6_dccp", 281}, {"socket$inet6_icmp", 281}, {"socket$inet6_icmp_raw", 281}, + {"socket$inet6_mptcp", 281}, {"socket$inet6_sctp", 281}, {"socket$inet6_tcp", 281}, {"socket$inet6_udp", 281}, @@ -11467,6 +11472,7 @@ const call_t syscalls[] = { {"socket$inet_dccp", 281}, {"socket$inet_icmp", 281}, {"socket$inet_icmp_raw", 281}, + {"socket$inet_mptcp", 281}, {"socket$inet_sctp", 281}, {"socket$inet_smc", 281}, {"socket$inet_tcp", 281}, @@ -14688,6 +14694,7 @@ const call_t syscalls[] = { {"socket$inet6_dccp", 198}, {"socket$inet6_icmp", 198}, {"socket$inet6_icmp_raw", 198}, + {"socket$inet6_mptcp", 198}, {"socket$inet6_sctp", 198}, {"socket$inet6_tcp", 198}, {"socket$inet6_udp", 198}, @@ -14695,6 +14702,7 @@ const call_t syscalls[] = { {"socket$inet_dccp", 198}, {"socket$inet_icmp", 198}, {"socket$inet_icmp_raw", 198}, + {"socket$inet_mptcp", 198}, {"socket$inet_sctp", 198}, {"socket$inet_smc", 198}, {"socket$inet_tcp", 198}, @@ -17826,6 +17834,7 @@ const call_t syscalls[] = { {"socket$inet6_dccp", 5040}, {"socket$inet6_icmp", 5040}, {"socket$inet6_icmp_raw", 5040}, + {"socket$inet6_mptcp", 5040}, {"socket$inet6_sctp", 5040}, {"socket$inet6_tcp", 5040}, {"socket$inet6_udp", 5040}, @@ -17833,6 +17842,7 @@ const call_t syscalls[] = { {"socket$inet_dccp", 5040}, {"socket$inet_icmp", 5040}, {"socket$inet_icmp_raw", 5040}, + {"socket$inet_mptcp", 5040}, {"socket$inet_sctp", 5040}, {"socket$inet_smc", 5040}, {"socket$inet_tcp", 5040}, @@ -21076,6 +21086,7 @@ const call_t syscalls[] = { {"socket$inet6_dccp", 326}, {"socket$inet6_icmp", 326}, {"socket$inet6_icmp_raw", 326}, + {"socket$inet6_mptcp", 326}, {"socket$inet6_sctp", 326}, {"socket$inet6_tcp", 326}, {"socket$inet6_udp", 326}, @@ -21083,6 +21094,7 @@ const call_t syscalls[] = { {"socket$inet_dccp", 326}, {"socket$inet_icmp", 326}, {"socket$inet_icmp_raw", 326}, + {"socket$inet_mptcp", 326}, {"socket$inet_sctp", 326}, {"socket$inet_smc", 326}, {"socket$inet_tcp", 326}, |
