diff options
| author | Michael Tüxen <tuexen@fh-muenster.de> | 2018-12-04 09:58:22 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2018-12-04 08:58:22 +0000 |
| commit | 6ad0ae6171ea0891838243683f174c6d6eecc90c (patch) | |
| tree | 18b8054e787e7d6a4a4227e9ac925d9d27917b07 /sys/linux/socket_inet_dccp.txt | |
| parent | 49e1764c75b166f3959a18f131a88b667e880f83 (diff) | |
sys: remove socketpair for AF_INET and AF_INET6
* OpebBSD: remove socketpair() for AF_INET and AF_INET6.
socketpair() is only supported on AF_UNIX.
* NetBSD: remove socketpair() for AF_INET and AF_INET6.
socketpair() is only supported for AF_UNIX.
* FreeBSD: remove socketpair() for AF_INET and AF_INET6.
socketpair() only supports AF_UNIX.
* Linux: remove socketpair for AF_INET and AF_INET6.
socketpair only supports AF_UNIX.
* Autogenerated files.
These are manually generated for all platforms you are not
running on. FreeBSD in this case.
* executor: rebase.
* sys/freebsd: rebase.
* sys/linux: use AF_UNIX based socketpair for nbd.
This was suggested by Dmitry.
Fixes #845
Diffstat (limited to 'sys/linux/socket_inet_dccp.txt')
| -rw-r--r-- | sys/linux/socket_inet_dccp.txt | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/sys/linux/socket_inet_dccp.txt b/sys/linux/socket_inet_dccp.txt index dc903a711..4812c87f8 100644 --- a/sys/linux/socket_inet_dccp.txt +++ b/sys/linux/socket_inet_dccp.txt @@ -7,23 +7,11 @@ include <linux/dccp.h> resource sock_dccp[sock_in] -dccp_pair { - f0 sock_dccp - f1 sock_dccp -} - socket$inet_dccp(domain const[AF_INET], type const[SOCK_DCCP], proto const[0]) sock_dccp -socketpair$inet_dccp(domain const[AF_INET], type const[SOCK_DCCP], proto const[0], fds ptr[out, dccp_pair]) resource sock_dccp6[sock_in6] -dccp6_pair { - f0 sock_dccp6 - f1 sock_dccp6 -} - socket$inet6_dccp(domain const[AF_INET6], type const[SOCK_DCCP], proto const[0]) sock_dccp6 -socketpair$inet6_dccp(domain const[AF_INET6], type const[SOCK_DCCP], proto const[0], fds ptr[out, dccp6_pair]) # Generic DCCP socket options |
