//! Types and helpers for the Willow General Purpose Sync protocol.
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub const MAX_PAYLOAD_SIZE_POWER: u8 = 18;
/// The maximum payload size limits when the other peer may include Payloads directly when transmitting Entries:
/// when an Entryβs payload_length is strictly greater than the maximum payload size,
/// its Payload may only be transmitted when explicitly requested.
///
/// The value is 256KiB.
pub const MAX_PAYLOAD_SIZE: usize = 2usize.pow;