IN_CLASS*() macros assume host order and s_addr is network byte
order, so we must convert them to host order.
This commit is contained in:
parent
7d9f87c315
commit
b97d16c711
@ -201,9 +201,9 @@ bootp(sock, flag)
|
||||
bcopy(rbuf.rbootp.bp_file, bootfile, sizeof(bootfile));
|
||||
bootfile[sizeof(bootfile) - 1] = '\0';
|
||||
|
||||
if (IN_CLASSA(myip.s_addr))
|
||||
if (IN_CLASSA(ntohl(myip.s_addr)))
|
||||
nmask = htonl(IN_CLASSA_NET);
|
||||
else if (IN_CLASSB(myip.s_addr))
|
||||
else if (IN_CLASSB(ntohl(myip.s_addr)))
|
||||
nmask = htonl(IN_CLASSB_NET);
|
||||
else
|
||||
nmask = htonl(IN_CLASSC_NET);
|
||||
|
Loading…
Reference in New Issue
Block a user