Skip to content
Snippets Groups Projects
Commit 58af7f0a authored by Saurav Das's avatar Saurav Das
Browse files

IPv4 octet range check

parent 4383f1b2
No related branches found
No related tags found
No related merge requests found
......@@ -403,7 +403,11 @@ public class IPv4 extends BasePacket {
int result = 0;
for (int i = 0; i < 4; ++i) {
result |= Integer.valueOf(octets[i]) << ((3-i)*8);
int oct = Integer.valueOf(octets[i]);
if (oct > 255 || oct < 0)
throw new IllegalArgumentException("Octet values in specified" +
" IPv4 address must be 0 <= value <= 255");
result |= oct << ((3-i)*8);
}
return result;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment