mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-25 15:10:48 +01:00
Merge remote-tracking branch 'tor-gitlab/mr/261' into maint-0.4.5
This commit is contained in:
commit
27ee12836d
2 changed files with 5 additions and 2 deletions
4
changes/ticket40243
Normal file
4
changes/ticket40243
Normal file
|
@ -0,0 +1,4 @@
|
|||
o Major bugfixes (authority, IPv6):
|
||||
- Do not consider multiple relays in the same IPv6 network to be sybils.
|
||||
Sybils are selected based on the /128 now, not the /64. Fixes bug 40243;
|
||||
bugfix on 0.4.5.1-alpha.
|
|
@ -4219,8 +4219,7 @@ compare_routerinfo_addrs_by_family(const routerinfo_t *a,
|
|||
{
|
||||
const tor_addr_t *addr1 = (family==AF_INET) ? &a->ipv4_addr : &a->ipv6_addr;
|
||||
const tor_addr_t *addr2 = (family==AF_INET) ? &b->ipv4_addr : &b->ipv6_addr;
|
||||
const int maskbits = (family==AF_INET) ? 32 : 64;
|
||||
return tor_addr_compare_masked(addr1, addr2, maskbits, CMP_EXACT);
|
||||
return tor_addr_compare(addr1, addr2, CMP_EXACT);
|
||||
}
|
||||
|
||||
/** Helper for sorting: compares two ipv4 routerinfos first by ipv4 address,
|
||||
|
|
Loading…
Add table
Reference in a new issue