We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35659ab commit 69d16b7Copy full SHA for 69d16b7
pldm-file/src/host.rs
@@ -15,7 +15,8 @@ use crate::PLDM_TYPE_FILE_TRANSFER;
15
16
const FILE_ID: FileIdentifier = FileIdentifier(0);
17
18
-const MAX_PART_SIZE: u16 = 1024;
+// Largest possible power of two
19
+const MAX_PART_SIZE: u16 = 8192;
20
21
pub trait Host {
22
/// Returns number of bytes read
0 commit comments