solana/sdk/src/packet.rs

6 lines
225 B
Rust
Raw Normal View History

2018-11-16 08:04:46 -08:00
/// Maximum over-the-wire size of a Transaction
2019-05-21 21:45:38 -07:00
/// 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;