MAX_PAYLOAD_LEN

Constant MAX_PAYLOAD_LEN 

Source
pub const MAX_PAYLOAD_LEN: u32 = 0x7f_ffff;
Expand description

Largest payload length the framer accepts. A declared length above this is treated as hostile; the caller must drop the connection (fail closed, R6). REF: Connection.cpp : if (iPacketLength > 0x7fffff) { ... "huge packet" ... }.