// pktmonclntk.h
typedef struct _PKTMON_EDGE_CONTEXT {
LIST_ENTRY ListLink;
HANDLE EdgeHandle;
PKTMON_COMPONENT_CONTEXT *CompContext;
PKTMON_PACKET_TYPE PacketType;
} PKTMON_EDGE_CONTEXT;
View the official Windows Driver Kit DDI referenceNo description available.
The PKTMON_EDGE_CONTEXT structure holds the context for an edge.
ListLinkA LIST_ENTRY structure that is used to link the edge context to the list of edge contexts that belong to a component.
EdgeHandleA handle to the edge.
CompContextA pointer to the PKTMON_COMPONENT_CONTEXT structure that holds the context for the component.
PacketTypeThe PKTMON_PACKET_TYPE.