sim-card
/
qemu
Archived
10
0
Fork 0

hack for bootp support

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1089 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2004-10-03 11:44:41 +00:00
parent 2518bd0dc2
commit 487be8a1a7
1 changed files with 3 additions and 0 deletions

View File

@ -136,6 +136,9 @@ static void bootp_reply(struct bootp_t *bp)
dhcp_decode(bp->bp_vend, DHCP_OPT_LEN, &dhcp_msg_type);
dprintf("bootp packet op=%d msgtype=%d\n", bp->bp_op, dhcp_msg_type);
if (dhcp_msg_type == 0)
dhcp_msg_type = DHCPREQUEST; /* Force reply for old BOOTP clients */
if (dhcp_msg_type != DHCPDISCOVER &&
dhcp_msg_type != DHCPREQUEST)
return;