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
There should be a way to support TCP connections. At the moment, both the *_recv_packet_system and send_packet_system both rely on a UdpSocket resource being present. We could split this out as a trait:
There should be a way to support TCP connections. At the moment, both the
*_recv_packet_system
andsend_packet_system
both rely on aUdpSocket
resource being present. We could split this out as a trait:Then use the trait in both systems so that we can swap out a
UdpSocket
for aTcpListener
.The text was updated successfully, but these errors were encountered: