WSK_DATA_INDICATION structure (wsk.h)

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

Syntax

typedef struct _WSK_DATA_INDICATION {
  struct _WSK_DATA_INDICATION *Next;
  WSK_BUF                     Buffer;
} WSK_DATA_INDICATION, *PWSK_DATA_INDICATION;

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.

Requirements

Requirement Value
Minimum supported client Available in Windows Vista and later versions of the Windows operating systems.
Header wsk.h (include Wsk.h)

See also

WSK_BUF

WskReceiveEvent

WskRelease