From: bellard Date: Sun, 3 Oct 2004 11:44:41 +0000 (+0000) Subject: hack for bootp support X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=487be8a1a76f5a47ebf1ecbdd8b6244432edd9d3;p=qemu.git hack for bootp support git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1089 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/slirp/bootp.c b/slirp/bootp.c index 3924c10725..56caf707eb 100644 --- a/slirp/bootp.c +++ b/slirp/bootp.c @@ -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;