resolver: rename lookup_state to caching_client

This commit is contained in:
Dirkjan Ochtman
2020-10-15 10:00:20 +02:00
committed by Benjamin Fry
parent 3f01cb7096
commit 587273247e
7 changed files with 6 additions and 5 deletions

View File

@@ -19,12 +19,12 @@ use proto::rr::{IntoName, Name, Record, RecordType};
use proto::xfer::{DnsRequestOptions, RetryDnsHandle};
use proto::DnsHandle;
use crate::caching_client::CachingClient;
use crate::config::{ResolverConfig, ResolverOpts};
use crate::dns_lru::{self, DnsLru};
use crate::error::*;
use crate::lookup::{self, Lookup, LookupEither, LookupFuture};
use crate::lookup_ip::{LookupIp, LookupIpFuture};
use crate::lookup_state::CachingClient;
use crate::name_server::{
ConnectionProvider, GenericConnection, GenericConnectionProvider, NameServerPool,
RuntimeProvider,