cortexflow_identity 0.1.1

CortexFlow identity service package
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * IpProtocols enum to reconstruct the packet protocol based on the
 * IPV4 Header Protocol code
 */
#[cfg(feature="enums")]
#[derive(Debug)]
#[repr(u8)]
pub enum IpProtocols {
    ICMP = 1,
    TCP = 6,
    UDP = 17,
}