Original change: https://android-review.googlesource.com/c/platform/packages/modules/Connectivity/+/1561295

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I6ed98e10a8873c6b5e86072964783313ba9de7e2
This commit is contained in:
Maciej Żenczykowski
2021-01-27 04:26:17 +00:00
committed by Automerger Merge Worker
3 changed files with 3 additions and 3 deletions

View File

@@ -62,7 +62,7 @@ public class BpfCoordinatorShimImpl
@Nullable
private final BpfMap<Tether4Key, Tether4Value> mBpfDownstream4Map;
// BPF map for downstream IPv4 forwarding.
// BPF map for upstream IPv4 forwarding.
@Nullable
private final BpfMap<Tether4Key, Tether4Value> mBpfUpstream4Map;

View File

@@ -28,7 +28,7 @@ import java.net.Inet4Address;
import java.net.UnknownHostException;
import java.util.Objects;
/** Key type for upstream IPv4 forwarding map. */
/** Key type for downstream & upstream IPv4 forwarding maps. */
public class Tether4Key extends Struct {
@Field(order = 0, type = Type.U32)
public final long iif;

View File

@@ -28,7 +28,7 @@ import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.Objects;
/** Value type for upstream IPv4 forwarding map. */
/** Value type for downstream & upstream IPv4 forwarding maps. */
public class Tether4Value extends Struct {
@Field(order = 0, type = Type.U32)
public final long oif;