Enum network_packet::HardwareOffloadTunnelPacketType[][src]

pub enum HardwareOffloadTunnelPacketType {
    Uncategorised,
    InternetProtocol,
    GenericRoutingEncapsulation,
    VirtualExtensibleLocalAreaNetwork,
    NetworkVirtualizationUsingGenericRoutingEncapsulation,
    GenericNetworkVirtualizationEncapsulation,
    TeredoOrGenericRoutingEncapsulationOrVirtualExtensibleLocalAreaNetwork,
    GprsTunnelingProtocolControl,
    GprsTunnelingProtocolUserData,
    InternetProtocolEncapsulatingSecurityPayload,
    Layer2TunnelingProtocol,
    VirtualExtensibleLocalAreaNetworkGenericProtocolExtension,
    MultiprotocolLabelSwitchingInGenericRoutingEncapsulation,
    MultiprotocolLabelSwitchingInUserDatagramProtocol,
    Other,
}

Layer 4 packet type.

If the packet is a tunneled packet, then this is known as the Outer Layer 4 packet type.

Variants

Probably not a tunnel packet type.

Internet protocol (IP) in internet protocol (IP) tunnel.

Generic Routing Encapsulation (GRE).

Virtual eXtensible Local Area Network (VxLAN).

Network Virtualization using Generic Routing Encapsulation (NVGRE).

Generic Network Virtualization Encapsulation (GENEVE).

?

GPRS Tunneling Protocol control (GTP-C).

GPRS Tunneling Protocol user data (GTP-U).

IP Encapsulating Security Payload (ESP).

Part of IPsec.

Layer 2 Tunneling Protocol (L2TP).

Virtual eXtensible Local Area Network (VxLAN) Generic Protocol Extension.

RFC 4023: MPLS-in-GRE tunnel.

RFC 7510: MPLS-in-UDP tunnel.

Invalid or introduced after this code was written.

Trait Implementations

impl Debug for HardwareOffloadTunnelPacketType
[src]

Formats the value using the given formatter. Read more

impl Copy for HardwareOffloadTunnelPacketType
[src]

impl Clone for HardwareOffloadTunnelPacketType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Ord for HardwareOffloadTunnelPacketType
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl PartialOrd for HardwareOffloadTunnelPacketType
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Eq for HardwareOffloadTunnelPacketType
[src]

impl PartialEq for HardwareOffloadTunnelPacketType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Hash for HardwareOffloadTunnelPacketType
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations