diff options
| -rw-r--r-- | core/java/android/app/admin/ConnectEvent.java | 6 | ||||
| -rw-r--r-- | core/java/android/app/admin/DnsEvent.java | 5 |
2 files changed, 9 insertions, 2 deletions
diff --git a/core/java/android/app/admin/ConnectEvent.java b/core/java/android/app/admin/ConnectEvent.java index 423ee52ee6a1..ffd38e2b8760 100644 --- a/core/java/android/app/admin/ConnectEvent.java +++ b/core/java/android/app/admin/ConnectEvent.java @@ -23,7 +23,11 @@ import java.net.InetAddress; import java.net.UnknownHostException; /** - * A class that represents a connect library call event. + * A class that represents a TCP connect event initiated through the standard network stack. + * + * <p>It contains information about the originating app as well as the remote TCP endpoint. + * + * <p>Support both IPv4 and IPv6 connections. */ public final class ConnectEvent extends NetworkEvent implements Parcelable { diff --git a/core/java/android/app/admin/DnsEvent.java b/core/java/android/app/admin/DnsEvent.java index c21725f0e86f..f84c5b00a135 100644 --- a/core/java/android/app/admin/DnsEvent.java +++ b/core/java/android/app/admin/DnsEvent.java @@ -26,7 +26,10 @@ import java.util.Collections; import java.util.List; /** - * A class that represents a DNS lookup event. + * A class that represents a DNS lookup event initiated through the standard network stack. + * + * <p>It contains information about the originating app as well as the DNS hostname and resolved + * IP addresses. */ public final class DnsEvent extends NetworkEvent implements Parcelable { |