From a2faae5d62291b61876643c0a9a19b066b9cbae0 Mon Sep 17 00:00:00 2001 From: Viktor Liu <17948409+lixmal@users.noreply.github.com> Date: Fri, 14 Mar 2025 11:38:16 +0100 Subject: [PATCH] [client] Fix anonymized addresses documentation (#3505) --- client/anonymize/anonymize.go | 2 +- client/server/debug.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/anonymize/anonymize.go b/client/anonymize/anonymize.go index 89552724a..2fc9d49d3 100644 --- a/client/anonymize/anonymize.go +++ b/client/anonymize/anonymize.go @@ -26,7 +26,7 @@ type Anonymizer struct { } func DefaultAddresses() (netip.Addr, netip.Addr) { - // 192.51.100.0, 100:: + // 198.51.100.0, 100:: return netip.AddrFrom4([4]byte{198, 51, 100, 0}), netip.AddrFrom16([16]byte{0x01}) } diff --git a/client/server/debug.go b/client/server/debug.go index 749220d62..39a67c92c 100644 --- a/client/server/debug.go +++ b/client/server/debug.go @@ -53,7 +53,7 @@ The files in this bundle have been anonymized to protect sensitive information. IP Addresses -IPv4 addresses are replaced with addresses starting from 192.51.100.0 +IPv4 addresses are replaced with addresses starting from 198.51.100.0 IPv6 addresses are replaced with addresses starting from 100:: IP addresses from non public ranges and well known addresses are not anonymized (e.g. 8.8.8.8, 100.64.0.0/10, addresses starting with 192.168., 172.16., 10., etc.).