Audit fixes

This commit is contained in:
jdl
2026-06-16 08:10:37 +02:00
parent 2b8cc86077
commit a2fe8dc79d
2 changed files with 2 additions and 2 deletions

View File

@@ -88,5 +88,5 @@ func multicastAddr(vpnIP netip.Addr) *net.UDPAddr {
b := vpnIP.As4()
return net.UDPAddrFromAddrPort(
netip.AddrPortFrom(
netip.AddrFrom4([4]byte{239, b[1], b[2], 0}), 4560))
netip.AddrFrom4([4]byte{239, b[0], b[1], b[2]}), 4560))
}