Add Nat64Prefix to LinkProperties copy constructor

The attribute is copied when parceling/unparceling so should also be
preserved in the copy constructor.

Test: tests based on this pass
Change-Id: Ia48d94fc075e6414f537dad181a236be5a32b41b
This commit is contained in:
Remi NGUYEN VAN
2019-01-16 15:27:27 +09:00
parent 3d680287a3
commit 0dd72a25de

View File

@@ -191,6 +191,7 @@ public final class LinkProperties implements Parcelable {
}
setMtu(source.mMtu);
mTcpBufferSizes = source.mTcpBufferSizes;
mNat64Prefix = source.mNat64Prefix;
}
}