Fix CGN subnet mask
This commit is contained in:
parent
0975a8684f
commit
5f2280183c
1 changed files with 1 additions and 1 deletions
|
|
@ -624,7 +624,7 @@ static bool isPrivateNetworkAddressV4(struct sockaddr_in* address, bool matchCGN
|
|||
return true;
|
||||
}
|
||||
// 100.64.0.0/10
|
||||
else if (matchCGN && (addr & 0xFFFC0000) == 0x64400000) {
|
||||
else if (matchCGN && (addr & 0xFFC00000) == 0x64400000) {
|
||||
return true;
|
||||
}
|
||||
else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue