// 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 referenceNo description available.
The WSK_DATA_INDICATION structure describes data that has been received on a connection-oriented socket.
NextA 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.
BufferA WSK_BUF structure that describes the data that has been received on the socket.
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.