PKTMON_PACKET_TYPE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// pktmonnpik.h

typedef enum _PKTMON_PACKET_TYPE {
  PktMonPayload_Unknown,
  PktMonPayload_Ethernet,
  PktMonPayload_WiFi,
  PktMonPayload_IP,
  PktMonPayload_HTTP,
  PktMonPayload_TCP,
  PktMonPayload_UDP,
  PktMonPayload_ARP,
  PktMonPayload_ICMP,
  PktMonPayload_ESP,
  PktMonPayload_AH,
  PktMonPayload_L4Payload
} PKTMON_PACKET_TYPE;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-pktmonnpik-pktmon_packet_type)

Description

The PKTMON_PACKET_TYPE enum defines the various packet types that can be processed by Packet Monitor.

Constants

PktMonPayload_Unknown

Corresponds to an unknown payload type.

PktMonPayload_Ethernet

Corresponds to the Ethernet payload type.

PktMonPayload_WiFi

Corresponds to the WiFi payload type.

PktMonPayload_IP

Corresponds to the IP payload type.

PktMonPayload_HTTP

Corresponds to the HTTP payload type.

PktMonPayload_TCP

Corresponds to the TCP payload type.

PktMonPayload_UDP

Corresponds to the UDP payload type.

PktMonPayload_ARP

Corresponds to the ARP payload type.

PktMonPayload_ICMP

Corresponds to the ICMP payload type.

PktMonPayload_ESP

Corresponds to the ESP payload type.

PktMonPayload_AH

Corresponds to the AH payload type.

PktMonPayload_L4Payload

Corresponds to the L4Payload payload type.

Remarks

See also