Struct trust_dns::udp::UdpClientConnection [] [src]

pub struct UdpClientConnection {
    // some fields omitted
}

UDP based DNS client

Methods

impl UdpClientConnection

fn new(name_server: SocketAddr) -> ClientResult<Self>

Creates a new client connection.

Note this has side affects of binding the socket to 0.0.0.0 and starting the listening event_loop. Expect this to change in the future.

Arguments

  • name_server - address of the name server to use for queries

Trait Implementations

impl ClientConnection for UdpClientConnection

fn send(&mut self, buffer: Vec<u8>) -> ClientResult<Vec<u8>>

impl Debug for UdpClientConnection

fn fmt(&self, f: &mut Formatter) -> Result