WSK_DATA_INDICATION - NtDoc

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

typedef struct _WSK_DATA_INDICATION {
  struct _WSK_DATA_INDICATION *Next;
  WSK_BUF                     Buffer;
} WSK_DATA_INDICATION, *PWSK_DATA_INDICATION;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wsk-_wsk_data_indication)

_WSK_DATA_INDICATION structure

Description

The WSK_DATA_INDICATION structure describes data that has been received on a connection-oriented socket.

Members

Next

A pointer to the next WSK_DATA_INDICATION structure in a linked list of WSK_DATA_INDICATION structures. If this member is NULL, this structure is the last WSK_DATA_INDICATION structure in the linked list.

Buffer

A WSK_BUF structure that describes the data that has been received on the socket.

Remarks

The WSK subsystem passes a pointer to a WSK_DATA_INDICATION structure as the DataIndication parameter when it calls a connection-oriented socket's WskReceiveEvent event callback function.

See also

WSK_BUF

WskReceiveEvent

WskRelease