diff --git a/implants/lib/eldritch/src/runtime/messages/report_file.rs b/implants/lib/eldritch/src/runtime/messages/report_file.rs index bf3b43b0f..9715cff97 100644 --- a/implants/lib/eldritch/src/runtime/messages/report_file.rs +++ b/implants/lib/eldritch/src/runtime/messages/report_file.rs @@ -28,7 +28,7 @@ impl Dispatcher for ReportFileMessage { // Configure Limits const CHUNK_SIZE: usize = 1024; // 1 KB Limit (/chunk) const MAX_CHUNKS_QUEUED: usize = 10; // 10 KB Limit (in channel) - const MAX_FILE_SIZE: usize = 1024 * 1024 * 1024; // 1GB Limit (total file size) + const MAX_FILE_SIZE: usize = 32 * 1024 * 1024 * 1024; // 32GB Limit (total file size) // Use a sync_channel to limit memory usage in case of network errors. // e.g. stop reading the file until more chunks can be sent.