Files
solana/sdk/src/packet.rs
2019-05-21 21:45:38 -07:00

6 lines
225 B
Rust

/// Maximum over-the-wire size of a Transaction
/// 1280 is IPv6 minimum MTU
/// 40 bytes is the size of the IPv6 header
/// 8 bytes is the size of the fragment header
pub const PACKET_DATA_SIZE: usize = 1280 - 40 - 8;