From 8d8e249484bcec5fdffec6bb37d6f3ccb9e27a7e Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 22 Feb 2018 20:33:52 +0100 Subject: sys/linux: add AF_SMC sockets --- sys/linux/socket_inet_tcp.txt | 4 ++++ 1 file changed, 4 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 5e076eeec..7e9a78797 100644 --- a/sys/linux/socket_inet_tcp.txt +++ b/sys/linux/socket_inet_tcp.txt @@ -18,6 +18,10 @@ tcp_pair { socket$inet_tcp(domain const[AF_INET], type const[SOCK_STREAM], proto const[0]) sock_tcp socketpair$inet_tcp(domain const[AF_INET], type const[SOCK_STREAM], proto const[0], fds ptr[out, tcp_pair]) +# 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 +socketpair$inet_smc(domain const[AF_SMC], type const[SOCK_STREAM], proto const[0], fds ptr[out, tcp_pair]) + resource sock_tcp6[sock_in6] tcp6_pair { -- cgit mrf-deployment