Skip to content
Snippets Groups Projects
Commit f023e107 authored by Gregor Maier's avatar Gregor Maier
Browse files

Fix bug in DHCP parser: int to byte comaprision.

parent a47eef7a
No related branches found
No related tags found
No related merge requests found
......@@ -361,10 +361,10 @@ public class DHCP extends BasePacket {
// minimum size 240 including magic cookie, options generally padded to 300
int optionsLength = 0;
for (DHCPOption option : this.options) {
if (option.getCode() == 0 || option.getCode() == 255) {
if (option.getCode() == 0 || option.getCode() == ((byte)255)) {
optionsLength += 1;
} else {
optionsLength += 2 + (int)(0xff & option.getLength());
optionsLength += 2 + (0xff & option.getLength());
}
}
int optionsPadLength = 0;
......
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