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

Commit a5d61df7 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "WiFi : Fix to DHCP to static IP configuration problem"

parents 8f475af3 6362d44d
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -71,7 +71,7 @@ public class NetlinkTracker extends BaseNetworkObserver {
    private final String TAG;

    public interface Callback {
        public void update();
        public void update(LinkProperties lp);
    }

    private final String mInterfaceName;
@@ -112,7 +112,7 @@ public class NetlinkTracker extends BaseNetworkObserver {
                changed = mLinkProperties.addLinkAddress(address);
            }
            if (changed) {
                mCallback.update();
                mCallback.update(new LinkProperties(mLinkProperties));
            }
        }
    }
@@ -126,7 +126,7 @@ public class NetlinkTracker extends BaseNetworkObserver {
                changed = mLinkProperties.removeLinkAddress(address);
            }
            if (changed) {
                mCallback.update();
                mCallback.update(new LinkProperties(mLinkProperties));
            }
        }
    }
@@ -140,7 +140,7 @@ public class NetlinkTracker extends BaseNetworkObserver {
                changed = mLinkProperties.addRoute(route);
            }
            if (changed) {
                mCallback.update();
                mCallback.update(new LinkProperties(mLinkProperties));
            }
        }
    }
@@ -154,7 +154,7 @@ public class NetlinkTracker extends BaseNetworkObserver {
                changed = mLinkProperties.removeRoute(route);
            }
            if (changed) {
                mCallback.update();
                mCallback.update(new LinkProperties(mLinkProperties));
            }
        }
    }
@@ -168,7 +168,7 @@ public class NetlinkTracker extends BaseNetworkObserver {
                synchronized (this) {
                    mDnsServerRepository.setDnsServersOn(mLinkProperties);
                }
                mCallback.update();
                mCallback.update(new LinkProperties(mLinkProperties));
            }
        }
    }