pub trait UdpFullStack: UdpClientStack {
// Required methods
fn bind(
&mut self,
socket: &mut Self::UdpSocket,
local_port: u16,
) -> Result<(), Self::Error>;
fn send_to(
&mut self,
socket: &mut Self::UdpSocket,
remote: SocketAddr,
buffer: &[u8],
) -> Result<(), Self::Error>;
}
Expand description
This trait is implemented by UDP/IP stacks. It provides the ability to listen for packets on a specified port and send replies.