AUDIT changes

This commit is contained in:
jdl
2026-06-13 00:10:21 +02:00
parent 11f6f2fc75
commit cd5442f3bf
6 changed files with 10 additions and 10 deletions

View File

@@ -44,7 +44,7 @@ func broadcastInner(selfVPNIP netip.Addr, pubKey wgtypes.Key, wgPort uint16, sig
// dropped by receivers' freshness gate.
send := func() error {
packet.Timestamp = time.Now().Unix()
payload := packet.Marshal(buf, signKey)
payload := packet.marshal(buf, signKey)
_, err := conn.WriteToUDP(payload, addr)
return err
}