Browse Source

remove debug info

pull/714/merge
Darien Raymond 7 years ago
parent
commit
88b521c77e
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
  1. 2
      app/dns/server/nameserver.go

2
app/dns/server/nameserver.go

@ -2,7 +2,6 @@ package server
import (
"context"
"fmt"
"sync"
"time"
@ -123,7 +122,6 @@ func (v *UDPNameServer) HandleResponse(payload *buf.Buffer) {
switch rr := rr.(type) {
case *dns.A:
record.IPs = append(record.IPs, rr.A)
fmt.Println("Adding ans:", rr.A)
if rr.Hdr.Ttl < ttl {
ttl = rr.Hdr.Ttl
}

Loading…
Cancel
Save