Skip to main content

copc_core/
limits.rs

1//! Shared parsing limits applied to untrusted LAS/COPC input.
2
3/// Maximum number of VLRs accepted when parsing LAS/COPC input.
4pub const MAX_VLR_COUNT: u32 = 4_096;
5
6/// Maximum number of EVLRs accepted when parsing LAS/COPC input.
7pub const MAX_EVLR_COUNT: u32 = 4_096;