Expand description
A UDP socket.
This module contains the UDP networking types, similar to those found in
std::net
, but suitable for async programming via futures and
async
/await
.
After creating a UdpSocket
by bind
ing it to a socket address, data can be
sent to and received from any other socket address.