From 13a17591bbbcf5f55e9f30eb5199c0c2205a818f Mon Sep 17 00:00:00 2001 From: null Date: Wed, 23 Sep 2026 12:05:15 +0800 Subject: [PATCH] wg3 --- proxy/wireguard/client.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/proxy/wireguard/client.go b/proxy/wireguard/client.go index 4b4811f28..2836ab586 100644 --- a/proxy/wireguard/client.go +++ b/proxy/wireguard/client.go @@ -336,6 +336,9 @@ func (h *Handler) init(ctx context.Context) error { } func (h *Handler) resolveLocal(host string) (net.IP, error) { + if ip := net.ParseIP(host); ip != nil { + return ip, nil + } ips, _, err := h.dns.LookupIP(host, dns.IPOption{IPv4Enable: true, IPv6Enable: true}) if err != nil { return nil, err