implement sendmmsg and recvmmsg
authorRich Felker <dalias@aerifal.cx>
Fri, 20 Jun 2014 03:01:15 +0000 (23:01 -0400)
committerRich Felker <dalias@aerifal.cx>
Fri, 20 Jun 2014 03:01:15 +0000 (23:01 -0400)
commitacb7e049b8c70b9e6ad57e8601373f9c991a0da4
treeecba8b37b99eafecade1f60b5b8e14e4e6d4be73
parent39201d07e41ca4cf5f8c35d4663767aa3f75208f
implement sendmmsg and recvmmsg

these are not pure syscall wrappers because they have to work around
kernel API bugs on 64-bit archs. the workarounds could probably be
made somewhat more efficient, but at the cost of more complexity. this
may be revisited later.
include/sys/socket.h
src/network/recvmmsg.c [new file with mode: 0644]
src/network/sendmmsg.c [new file with mode: 0644]