1#![cfg_attr(not(test), no_std)]
2
3pub const OCTET: usize = 8;
4pub const MAX_DATA_SIZE: usize = 65536;
5pub const PRIMARY_HEADER_SIZE: usize = 6 * OCTET;
6pub const MAX_SP_SIZE: usize = MAX_DATA_SIZE + PRIMARY_HEADER_SIZE;
7
8pub mod packet;
9pub mod pri_header;
10pub mod data;
11pub mod errors;