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
I am trying to use turmoil to simulate a UDP load balancer, but I am not able to use turmoil::net::UdpSocket instead of tokio::net::UdpSocket without rewriting components of the load balancer.
Two issues I have run into so far is turmoil::net::UdpSocket::send is private and turmoil::net::UdpSocket::connect does not exist, while in tokio::net::UdpSocket, connect and send are both public methods of UdpSocket.
The text was updated successfully, but these errors were encountered:
These still need to be implemented. UDP hasn't been as prioritized as TCP. You are welcome to pick up this work and submit a PR for the methods you need.
I am trying to use turmoil to simulate a UDP load balancer, but I am not able to use
turmoil::net::UdpSocket
instead oftokio::net::UdpSocket
without rewriting components of the load balancer.Two issues I have run into so far is
turmoil::net::UdpSocket::send
is private andturmoil::net::UdpSocket::connect
does not exist, while intokio::net::UdpSocket
,connect
andsend
are both public methods ofUdpSocket
.The text was updated successfully, but these errors were encountered: