diff options
Diffstat (limited to 'src/android/net/dhcp/DhcpServingParams.java')
-rw-r--r-- | src/android/net/dhcp/DhcpServingParams.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/android/net/dhcp/DhcpServingParams.java b/src/android/net/dhcp/DhcpServingParams.java index 77cdf7a..97db6ae 100644 --- a/src/android/net/dhcp/DhcpServingParams.java +++ b/src/android/net/dhcp/DhcpServingParams.java @@ -16,9 +16,8 @@ package android.net.dhcp; -import static android.net.shared.Inet4AddressUtils.getPrefixMaskAsInet4Address; -import static android.net.shared.Inet4AddressUtils.intToInet4AddressHTH; - +import static com.android.net.module.util.Inet4AddressUtils.getPrefixMaskAsInet4Address; +import static com.android.net.module.util.Inet4AddressUtils.intToInet4AddressHTH; import static com.android.server.util.NetworkStackConstants.INFINITE_LEASE; import static com.android.server.util.NetworkStackConstants.IPV4_MAX_MTU; import static com.android.server.util.NetworkStackConstants.IPV4_MIN_MTU; @@ -27,12 +26,13 @@ import static java.lang.Integer.toUnsignedLong; import android.net.IpPrefix; import android.net.LinkAddress; -import android.net.shared.Inet4AddressUtils; import android.util.ArraySet; import androidx.annotation.NonNull; import androidx.annotation.Nullable; +import com.android.net.module.util.Inet4AddressUtils; + import java.net.Inet4Address; import java.util.Arrays; import java.util.Collections; |