aboutsummaryrefslogtreecommitdiffstats
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
commit730226709b5aff5800c938b5bae7c9fd86cffeb0 (patch)
tree0f3d3144dd3e93a0865e6f391a65a5cb6fad136a /package/busybox/patches/242-udhcpc_msgs.patch
parent45f61a72684e63899f81c51171b650933e2ea2e7 (diff)
downloadupstream-730226709b5aff5800c938b5bae7c9fd86cffeb0.tar.gz
upstream-730226709b5aff5800c938b5bae7c9fd86cffeb0.tar.bz2
upstream-730226709b5aff5800c938b5bae7c9fd86cffeb0.zip
[package] busybox: update to v1.13.4 (closes: #4279)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16063 3c298f89-4303-0410-b956-a3cf2f4a3e73
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);
+ }