diff options
author | James <> | 2013-03-17 12:16:37 +0000 |
---|---|---|
committer | James <> | 2013-03-17 12:16:37 +0000 |
commit | 27b76ab0671089c47506615a796a261e993896a7 (patch) | |
tree | 61213d67e7fa87b20356b23798558e2c4212c42f /package/busybox/patches/.svn/text-base/243-udhcpc_changed_ifindex.patch.svn-base | |
download | trunk-36060-master.tar.gz trunk-36060-master.tar.bz2 trunk-36060-master.zip |
Diffstat (limited to 'package/busybox/patches/.svn/text-base/243-udhcpc_changed_ifindex.patch.svn-base')
-rw-r--r-- | package/busybox/patches/.svn/text-base/243-udhcpc_changed_ifindex.patch.svn-base | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/package/busybox/patches/.svn/text-base/243-udhcpc_changed_ifindex.patch.svn-base b/package/busybox/patches/.svn/text-base/243-udhcpc_changed_ifindex.patch.svn-base new file mode 100644 index 0000000..cb0df22 --- /dev/null +++ b/package/busybox/patches/.svn/text-base/243-udhcpc_changed_ifindex.patch.svn-base @@ -0,0 +1,15 @@ +--- a/networking/udhcp/dhcpc.c ++++ b/networking/udhcp/dhcpc.c +@@ -1267,6 +1267,12 @@ int udhcpc_main(int argc UNUSED_PARAM, c + /* silence "uninitialized!" warning */ + unsigned timestamp_before_wait = timestamp_before_wait; + ++ /* When running on a bridge, the ifindex may have changed (e.g. if ++ * member interfaces were added/removed or if the status of the ++ * bridge changed). ++ * Workaround: refresh it here before processing the next packet */ ++ udhcp_read_interface(client_config.interface, &client_config.ifindex, NULL, client_config.client_mac); ++ + //bb_error_msg("sockfd:%d, listen_mode:%d", sockfd, listen_mode); + + /* Was opening raw or udp socket here |