Merge "Add accessors for all addresses and clarify compare* methods"

This commit is contained in:
Lorenzo Colitti
2013-08-01 06:44:28 +00:00
committed by Android (Google) Code Review
3 changed files with 69 additions and 24 deletions

View File

@@ -2433,7 +2433,7 @@ public class ConnectivityService extends IConnectivityManager.Stub {
CompareResult<RouteInfo> routeDiff = new CompareResult<RouteInfo>();
if (curLp != null) {
// check for the delta between the current set and the new
routeDiff = curLp.compareRoutes(newLp);
routeDiff = curLp.compareAllRoutes(newLp);
dnsDiff = curLp.compareDnses(newLp);
} else if (newLp != null) {
routeDiff.added = newLp.getAllRoutes();