Extending DNS event reporting am: f82d1596ce am: 3156b53fbe

am: c1ca63e8cb

Change-Id: I5c3a43d9835900e849da6db2a895c0131f19d538
This commit is contained in:
Michal Karpinski
2016-10-27 13:30:02 +00:00
committed by android-build-merger

View File

@@ -134,7 +134,9 @@ public class NetdEventListenerService extends INetdEventListener.Stub {
@Override
// Called concurrently by multiple binder threads.
public synchronized void onDnsEvent(int netId, int eventType, int returnCode, int latencyMs) {
// This method must not block or perform long-running operations.
public synchronized void onDnsEvent(int netId, int eventType, int returnCode, int latencyMs,
String hostname, String[] ipAddresses, int ipAddressesCount, int uid) {
maybeVerboseLog(String.format("onDnsEvent(%d, %d, %d, %d)",
netId, eventType, returnCode, latencyMs));