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

Commit 20a0d130 authored by Joe Onorato's avatar Joe Onorato Committed by Yao Chen
Browse files

Raise the max section size of an incident report to 24 mb

Test: bit GtsIncidentManagerTestCases:*
Bug: 123543706
Change-Id: If46fb3c3972b0367e57e6dcb49edd9e3fe834a98
parent cd62e442
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ namespace os {
namespace incidentd {

const ssize_t BUFFER_SIZE = 16 * 1024;  // 16 KB
const ssize_t MAX_BUFFER_COUNT = 256;   // 4 MB max
const ssize_t MAX_BUFFER_COUNT = 1536;   // 24 MB max

FdBuffer::FdBuffer()
        :mBuffer(new EncodedBuffer(BUFFER_SIZE)),