pub trait DnsClientStream: Stream<Item = Result<SerialMessage, ProtoError>> + Display + Send {
    type Time: Time;
    fn name_server_addr(&self) -> SocketAddr;
}
Expand description

A non-multiplexed stream of Serialized DNS messages

Associated Types

Time implementation for this impl

Required methods

The remote name server address

Implementors