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

Commit 15cbfefb authored by Chiachang Wang's avatar Chiachang Wang Committed by Android (Google) Code Review
Browse files

Merge "DO NOT MERGE: use legacy way to get tcp packet count" into pi-dev

parents 0587bdd5 a5c3fb10
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -941,8 +941,14 @@ public class NetworkStatsService extends INetworkStatsService.Stub {

    @Override
    public long getIfaceStats(String iface, int type) {
        // eBPF code doesn't provide per-interface TCP counters. Use xt_qtaguid for now.
        // TODO: delete getMobileTcp(Rx|Tx)Packets entirely. See b/110443385 .
        if (type == TYPE_TCP_TX_PACKETS || type == TYPE_TCP_RX_PACKETS) {
            return nativeGetIfaceStat(iface, type, false);
        } else {
            return nativeGetIfaceStat(iface, type, checkBpfStatsEnable());
        }
    }

    @Override
    public long getTotalStats(int type) {