uniudp 1.0.0

Unidirectional UDP transport with chunking, redundancy, and Reed-Solomon FEC.
Documentation
1
2
3
4
5
#[must_use]
pub fn packet_crc32c(header_without_checksum: &[u8], payload: &[u8]) -> u32 {
    let crc = crc32c::crc32c_append(0, header_without_checksum);
    crc32c::crc32c_append(crc, payload)
}