rename SecureClient et al to Dnssec (more accurate)

This commit is contained in:
Benjamin Fry
2019-12-21 15:27:03 -08:00
parent e96cd0b6e7
commit 4661220c52
17 changed files with 77 additions and 74 deletions

View File

@@ -194,8 +194,8 @@ impl<C: DnsHandle, P: ConnectionProvider<Conn = C>> AsyncResolver<C, P> {
if options.validate {
#[cfg(feature = "dnssec")]
{
use proto::xfer::SecureDnsHandle;
either = LookupEither::Secure(SecureDnsHandle::new(client));
use proto::xfer::DnssecDnsHandle;
either = LookupEither::Secure(DnssecDnsHandle::new(client));
}
#[cfg(not(feature = "dnssec"))]