Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-10-01 | recvmmsg/sendmmsg: add recvmmsg sendmmsg support. | Guo Ren | |
The recvmmsg and sendmmsg is very important for UDP stream application. If we only use recvmsg for UDP stream, it will only copy one mtu size of data in a syscall. And recvmmsg copy as many as you want in a syscall. So recvmmsg is more efficient,and some applications will depends on the recvmmsg and sendmmsg, eg: UDP media stream player. Signed-off-by: Guo Ren <ren_guo@c-sky.com> |