Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c2d01196 authored by Rubin Xu's avatar Rubin Xu Committed by Android (Google) Code Review
Browse files

Merge "Add more javadoc to ConnectEvent and DnsEvent"

parents 4dcab284 0a537bbf
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -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 {

+4 −1
Original line number Diff line number Diff line
@@ -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 {