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

Commit f152a8ed authored by Erik Kline's avatar Erik Kline Committed by android-build-merger
Browse files

Merge "IpManager,DhcpClient: catch some errors and better logging" into nyc-dev

am: 5486aabc

* commit '5486aabc':
  IpManager,DhcpClient: catch some errors and better logging

Change-Id: Idc9d3d0aefbd7dedaa31a2f21b06ca80f4383c30
parents 1a9fafce 5486aabc
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -264,8 +264,8 @@ public class DhcpClient extends StateMachine {
            mInterfaceBroadcastAddr = new PacketSocketAddress(mIface.getIndex(),
                    DhcpPacket.ETHER_BROADCAST);
            return true;
        } catch(SocketException e) {
            Log.wtf(TAG, "Can't determine ifindex or MAC address for " + mIfaceName);
        } catch(SocketException | NullPointerException e) {
            Log.e(TAG, "Can't determine ifindex or MAC address for " + mIfaceName, e);
            return false;
        }
    }
+1 −1
Original line number Diff line number Diff line
@@ -690,7 +690,7 @@ public class IpManager extends StateMachine {
            final InterfaceConfiguration ifcg = new InterfaceConfiguration();
            ifcg.setLinkAddress(new LinkAddress("0.0.0.0/0"));
            mNwService.setInterfaceConfig(mInterfaceName, ifcg);
        } catch (RemoteException e) {
        } catch (IllegalStateException | RemoteException e) {
            Log.e(mTag, "ALERT: Failed to clear IPv4 address on interface " + mInterfaceName, e);
        }
    }