-
It would be great to support `sendmmsg` and `recvmmsg` in `rustix::net`.
-
**Motivation**
Currently, the `sendmmsg` syscall is supported, but lacks arguments in both exit and entry events. I believe that adding parameters could significantly enhance the visibility of outb…
-
### Description
I want to find a faster `PacketDispatchMode` supported by TUN device.
### Is this feature related to a specific bug?
_No response_
### Do you have a specific solution in mind?
io_…
-
is there an plan to support sendmmsg and recvmmsg on unix platform? or WSARecvMsg on windows platform?we need "sendmmsg" or "recvmmsg" to realize aggregate sending and receiving data through udp socke…
zkas updated
3 months ago
-
Hello OpenSSL,
I've been trying to build OpenSSL version 3.2.1 on AIX 7.1 with GCC 11.3.0. The build fails with undefined references to `sendmmsg` which is used in crypto/bio/bss_dgram.c. The reaso…
-
Already implemented here (in Go):
https://github.com/search?q=repo%3Adatabase64128%2Fshadowsocks-go%20recvmmsg&type=code
https://github.com/search?q=repo%3Adatabase64128%2Fshadowsocks-go+sendmmsg&…
-
See: http://man7.org/linux/man-pages/man2/sendmmsg.2.html
-
Hello,
I wanted to ask you @lsalzman, whether ENet could see an optimization with GSO and sendmmsg (instead of the plain 'sendmsg') in order to optimize throughput?
( see: https://blog.cloudflare…
-
We are already using `quinn-udp` for the UDP socket which allows us to use GRO to read multiple network packets in a single syscall. Currently, we process those one by one and then write them out indi…
-
See https://github.com/ossrs/srs/issues/307#issuecomment-612953502
Linux GSO,可以将多个UDP包延迟分包,提升性能,参考[UDP GSO原理及应用](https://blog.csdn.net/Wanli_Xing/article/details/102893871)。
> 注意:Linux 4.18.0及以上…