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

Commit 00e3086c authored by Chalard Jean's avatar Chalard Jean
Browse files

Disable TCP stall detection

Bug: 145224211
Test: FrameworksNetTests NetworkStackTests
Change-Id: I196d1a507cb054058427fa5fa6c7fd42a3b3f886
parent 4336b91f
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -470,7 +470,9 @@ public class TcpSocketTracker {

        public Dependencies(final Context context, final boolean tcpSupport) {
            mContext = context;
            mIsTcpInfoParsingSupported = tcpSupport;
            // TCP data stall detection is currently crashing because of buffer underflows.
            // Disable it.
            mIsTcpInfoParsingSupported = false;
        }

        /**