aboutsummaryrefslogtreecommitdiff
path: root/src/network/sendmmsg.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* fix sendmmsg emulation return value for zero-length vector•••this case is not even documented, but the kernel returns 0 here and it makes sense to be consistent. Rich Felker2014-06-201-0/+1
* 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. Rich Felker2014-06-191-0/+29