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

Commit cc40a12b authored by Raphael Kim's avatar Raphael Kim
Browse files

[CDM secure channel] Increase message queue size to 500

Bug: 308640144
Test: m
Change-Id: Ibf3e251282b96a9abbc83827f12bbd66eb59ff6c
parent 2014926d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ class SecureTransport extends Transport implements SecureChannel.Callback {

    private volatile boolean mShouldProcessRequests = false;

    private final BlockingQueue<byte[]> mRequestQueue = new ArrayBlockingQueue<>(100);
    private final BlockingQueue<byte[]> mRequestQueue = new ArrayBlockingQueue<>(500);

    SecureTransport(int associationId, ParcelFileDescriptor fd, Context context) {
        super(associationId, fd, context);