You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While the current implementation using both tcp and quic work, there might be benefits to implementing proper "plain" UDP sockets. While these won't be useable with the current connection trait, an approach would be to add a a slightly differnet read/write loop for this. The current frames can be encoded pretty easily, and we might be able to properly support recvmmsg and sendmmsg (double m intended yes)
The text was updated successfully, but these errors were encountered:
This will likely not be done as a result of #253. However, a hybrid solution might be possible (especially for quic), where protocol messages use reliable communication, and data forwarding uses plain udp. Quinn supports sending unreliable datagrams for instance. This would require reworking the connection trait
While the current implementation using both tcp and quic work, there might be benefits to implementing proper "plain" UDP sockets. While these won't be useable with the current connection trait, an approach would be to add a a slightly differnet read/write loop for this. The current frames can be encoded pretty easily, and we might be able to properly support
recvmmsg
andsendmmsg
(double m intended yes)The text was updated successfully, but these errors were encountered: