Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 bit operations should not be done on 32 bit quantities.
|
|
if the expected argument to the opcode is unsigned,
return (val & 0xffff)
if the expected argument to the occode is signed,
sign extend the 16 bit value
short = val;
val = (int) short;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
I also cleaned it up to pass -Wall and check malloc().
|
|
|
|
|
|
larger than the maximum IP packet size. From NetBSD.
|
|
|
|
|
|
|
|
Dennis Ferguson (NetBSD PR #2788)
|
|
|
|
to try various network masks
|
|
|
|
|
|
gmeinerj@ZUMtOBEL.co.at
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|