1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-08 13:25:06 +03:00
openwrt-xburst/package/busybox/patches/242-udhcpc_msgs.patch
acoul 59736eb773 package/busybox: update to busybox-1.7.1, include upstream patches
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22659 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-08-15 09:53:21 +00:00

19 lines
570 B
Diff

--- a/networking/udhcp/dhcpc.c
+++ b/networking/udhcp/dhcpc.c
@@ -428,6 +428,7 @@ static int raw_bcast_from_client_config_
static int send_discover(uint32_t xid, uint32_t requested)
{
struct dhcp_packet packet;
+ static int msgs = 0;
init_packet(&packet, DHCPDISCOVER);
packet.xid = xid;
@@ -438,6 +439,7 @@ static int send_discover(uint32_t xid, u
udhcp_add_simple_option(&packet, DHCP_MAX_SIZE, htons(576));
add_client_options(&packet);
+ if (msgs++ < 3)
bb_info_msg("Sending discover...");
return raw_bcast_from_client_config_ifindex(&packet);
}