aboutsummaryrefslogtreecommitdiffstats
path: root/dns/proxy.go
diff options
context:
space:
mode:
Diffstat (limited to 'dns/proxy.go')
-rw-r--r--dns/proxy.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/dns/proxy.go b/dns/proxy.go
index 6241edd..32f6907 100644
--- a/dns/proxy.go
+++ b/dns/proxy.go
@@ -38,12 +38,12 @@ type Proxy struct {
cache *cache.Cache
logger *sql.Logger
server *dns.Server
- client *dnsutil.Client
+ client dnsutil.Client
mu sync.RWMutex
}
// NewProxy creates a new DNS proxy.
-func NewProxy(cache *cache.Cache, client *dnsutil.Client, logger *sql.Logger) (*Proxy, error) {
+func NewProxy(cache *cache.Cache, client dnsutil.Client, logger *sql.Logger) (*Proxy, error) {
return &Proxy{
logger: logger,
cache: cache,