Add IPv6 tethering coordinator

am: 6f0405308b

Change-Id: Icf8034276d4edc7167ad03ff8860ac8e3d05c464
This commit is contained in:
Erik Kline
2016-07-13 04:57:17 +00:00
committed by android-build-merger

View File

@@ -103,7 +103,7 @@ public class LinkAddress implements Parcelable {
private boolean isIPv6ULA() {
if (address != null && address instanceof Inet6Address) {
byte[] bytes = address.getAddress();
return ((bytes[0] & (byte)0xfc) == (byte)0xfc);
return ((bytes[0] & (byte)0xfe) == (byte)0xfc);
}
return false;
}