Files
netbird/client/internal
Zoltán Papp c46a101c1f [client] Fix DNS probe listener panic on unparseable local address
generateFreePort used netip.MustParseAddrPort on
the OS-produced LocalAddr().String(), which panics on address strings
that don't parse (e.g. IPv6 zone IDs like [::]:0%eth0). Eliminate the
parsing entirely by reading the port from the concrete *net.UDPAddr
that net.ListenUDP returns, and construct the bind address directly.
2026-07-16 12:50:56 +02:00
..