summaryrefslogtreecommitdiffstats
path: root/package/busybox/patches/242-udhcpc_msgs.patch
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2009-05-25 17:15:39 +0000
committerNicolas Thill <nico@openwrt.org>2009-05-25 17:15:39 +0000
commite7133da4aada3f96f0e4a64a9858919ee36a2e0a (patch)
tree04f8e115af4d7639ce173efddf1022b215048390 /package/busybox/patches/242-udhcpc_msgs.patch
parentb90bd689a2df064438cc7b270270f322136aa7b2 (diff)
downloadmaster-31e0f0ae-e7133da4aada3f96f0e4a64a9858919ee36a2e0a.tar.gz
master-31e0f0ae-e7133da4aada3f96f0e4a64a9858919ee36a2e0a.tar.bz2
master-31e0f0ae-e7133da4aada3f96f0e4a64a9858919ee36a2e0a.zip
busybox: update to v1.13.4 (closes: #4279)
SVN-Revision: 16063
Diffstat (limited to 'package/busybox/patches/242-udhcpc_msgs.patch')
-rw-r--r--package/busybox/patches/242-udhcpc_msgs.patch10
1 files changed, 5 insertions, 5 deletions
diff --git a/package/busybox/patches/242-udhcpc_msgs.patch b/package/busybox/patches/242-udhcpc_msgs.patch
index db4fa314bb..0140c7854f 100644
--- a/package/busybox/patches/242-udhcpc_msgs.patch
+++ b/package/busybox/patches/242-udhcpc_msgs.patch
@@ -1,18 +1,18 @@
--- a/networking/udhcp/clientpacket.c
+++ b/networking/udhcp/clientpacket.c
-@@ -101,6 +101,7 @@ int send_decline(uint32_t xid, uint32_t
- int send_discover(uint32_t xid, uint32_t requested)
+@@ -126,6 +126,7 @@ int FAST_FUNC send_decline(uint32_t xid,
+ int FAST_FUNC send_discover(uint32_t xid, uint32_t requested)
{
struct dhcpMessage packet;
+ static int msgs = 0;
init_packet(&packet, DHCPDISCOVER);
packet.xid = xid;
-@@ -113,6 +114,7 @@ int send_discover(uint32_t xid, uint32_t
+@@ -138,6 +139,7 @@ int FAST_FUNC send_discover(uint32_t xid
add_param_req_option(&packet);
+ if (msgs++ < 3)
bb_info_msg("Sending discover...");
- return udhcp_send_raw_packet(&packet, INADDR_ANY, CLIENT_PORT, INADDR_BROADCAST,
- SERVER_PORT, MAC_BCAST_ADDR, client_config.ifindex);
+ return raw_bcast_from_client_config_ifindex(&packet);
+ }