1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-22 10:08:15 -05:00

remove debug info

This commit is contained in:
Darien Raymond 2017-11-17 03:03:27 +00:00
parent 41bc2a6ce4
commit 88b521c77e
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -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
}