Fix CGN subnet mask

This commit is contained in:
Cameron Gutman 2025-07-15 09:59:57 -05:00
parent 0975a8684f
commit 5f2280183c

View File

@ -624,7 +624,7 @@ static bool isPrivateNetworkAddressV4(struct sockaddr_in* address, bool matchCGN
return true; return true;
} }
// 100.64.0.0/10 // 100.64.0.0/10
else if (matchCGN && (addr & 0xFFFC0000) == 0x64400000) { else if (matchCGN && (addr & 0xFFC00000) == 0x64400000) {
return true; return true;
} }
else { else {