struct _TDI_REQUEST_KERNEL_RECEIVEDG {
ULONG ReceiveLength;
PTDI_CONNECTION_INFORMATION ReceiveDatagramInformation;
PTDI_CONNECTION_INFORMATION ReturnInformation;
ULONG ReceiveFlags;
} TDI_REQUEST_KERNEL_RECEIVEDG, *PTDI_REQUEST_KERNEL_RECEIVEDG;
TDI_REQUEST_KERNEL_RECEIVEDG defines a kernel-mode client receive datagram request using the TDI_RECEIVE_DATAGRAM request message.
Members
ReceiveLength
Specifies the maximum length, in bytes, of the receive buffer. If the client provides NULL for this member, the internal driver receive datagram function uses the MDL chain describing the client receive buffer.
ReceiveDatagramInformation
Points to a TDI_CONNECTION_INFORMATION structure containing input receive datagram information.
ReturnInformation
Points to the caller-defined memory location to which the driver receive datagram function writes a TDI_CONNECTION_INFORMATION structure containing receive datagram information.
ReceiveFlags
Specifies a bitmap of bit flags indicating additional information about a receive datagram operation. See TDI_RECEIVE_DATAGRAM.
See Also