Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e0681c52 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Return actual payload (DHCPDISCOVER) bytes array when starting FILS. am: 98b65937 am: 61e645af

Change-Id: I2cd9577ab759614adcde2e5e29be8b35e47256ba
parents cb99f7bc 61e645af
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1270,7 +1270,7 @@ public class DhcpClient extends StateMachine {
                    DO_UNICAST, REQUESTED_PARAMS, true /* rapid commit */, mHostname);

            l2Packet.dstMacAddress = MacAddress.fromBytes(DhcpPacket.ETHER_BROADCAST);
            l2Packet.payload = packet.array();
            l2Packet.payload = Arrays.copyOf(packet.array(), packet.limit());
            mController.sendMessage(CMD_START_PRECONNECTION, l2Packet);
        }
    }