2010-08-15 09:53:21 +00:00
|
|
|
--- a/networking/udhcp/dhcpc.c
|
|
|
|
+++ b/networking/udhcp/dhcpc.c
|
2012-10-08 12:31:27 +00:00
|
|
|
@@ -602,6 +602,7 @@ static int raw_bcast_from_client_config_
|
2011-04-20 02:56:23 +00:00
|
|
|
static NOINLINE int send_discover(uint32_t xid, uint32_t requested)
|
2007-05-14 16:05:17 +00:00
|
|
|
{
|
2009-12-07 16:56:04 +00:00
|
|
|
struct dhcp_packet packet;
|
2007-05-14 16:05:17 +00:00
|
|
|
+ static int msgs = 0;
|
|
|
|
|
2011-04-20 02:56:23 +00:00
|
|
|
/* Fill in: op, htype, hlen, cookie, chaddr fields,
|
|
|
|
* random xid field (we override it below),
|
2012-10-08 12:31:27 +00:00
|
|
|
@@ -619,6 +620,7 @@ static NOINLINE int send_discover(uint32
|
2011-04-20 02:56:23 +00:00
|
|
|
*/
|
2010-08-15 09:53:21 +00:00
|
|
|
add_client_options(&packet);
|
2007-05-14 16:05:17 +00:00
|
|
|
|
|
|
|
+ if (msgs++ < 3)
|
2008-08-20 14:00:34 +00:00
|
|
|
bb_info_msg("Sending discover...");
|
2009-05-25 17:15:39 +00:00
|
|
|
return raw_bcast_from_client_config_ifindex(&packet);
|
|
|
|
}
|