Expand description
All the DNS transport types.
Structs§
- Auto
Transport - 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.
- Generic
Transport - The Generic transport, Allows easier passthrough of data to other transports
- Https
Transport - 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.