epee: fix detection of 172.16.0.0/172.31.255.255 local IP range

release-v0.5.1
moneromooo-monero 6 years ago
parent 8a7b3ff138
commit f8dd433110
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -48,7 +48,7 @@ namespace epee
if( (ip | 0xffffff00) == 0xffffffac)
{
uint32_t second_num = (ip << 8) & 0xff000000;
uint32_t second_num = (ip >> 8) & 0xff;
if(second_num >= 16 && second_num <= 31 )
return true;
}

Loading…
Cancel
Save