mirror of
https://github.com/monero-project/monero.git
synced 2025-08-01 05:46:07 -04:00
Merge pull request #3902
f8dd433
epee: fix detection of 172.16.0.0/172.31.255.255 local IP range (moneromooo-monero)5db9e3c
unit_tests: add tests for local IP range detection (moneromooo-monero)
This commit is contained in:
commit
c678413a89
2 changed files with 33 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue