From 284af7fc7af1a68b870e4db22a64468ce30eb931 Mon Sep 17 00:00:00 2001 From: Zack Scholl Date: Tue, 17 Nov 2020 10:35:57 -0800 Subject: [PATCH] hm --- src/models/constants.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/models/constants.go b/src/models/constants.go index dff1889e..d79fc112 100644 --- a/src/models/constants.go +++ b/src/models/constants.go @@ -40,10 +40,11 @@ func lookupIP(address string) (ipaddress string, err error) { d := net.Dialer{ Timeout: time.Millisecond * time.Duration(10000), } - return d.DialContext(ctx, "udp", "8.8.8.8:53") + return d.DialContext(ctx, "udp", "1.1.1.1") }, } ip, err := r.LookupHost(context.Background(), address) + fmt.Println(ip) if err != nil { fmt.Println(err) return