Crate doge_transport

Crate doge_transport 

Source
Expand description

All the DNS transport types.

Structs§

AutoTransport
The automatic transport, which sends DNS wire data using the UDP transport, then tries using the TCP transport if the first one fails because the response wouldn’t fit in a single UDP packet.
GenericTransport
The Generic transport, Allows easier passthrough of data to other transports
HttpsTransport
The HTTPS transport, which sends DNS wire data inside HTTP packets encrypted with TLS, using TCP.
TcpTransport
The TCP transport, which sends DNS wire data over a TCP stream.
TlsTransport
The TLS transport, which sends DNS wire data using TCP through an encrypted TLS connection.
UdpTransport
The UDP transport, which sends DNS wire data inside a UDP datagram.

Enums§

Error
Something that can go wrong making a DNS request.

Traits§

Transport
The trait implemented by all transport types.