// iscsiop.h
typedef struct _SendTargets_OUT {
ULONG Status;
ULONG ResponseSize;
UCHAR Response[1];
} SendTargets_OUT, *PSendTargets_OUT;
View the official Windows Driver Kit DDI referenceNo description available.
The SendTargets_OUT structure holds the output data for the SendTargets method.
StatusThe status of the SendTargets method. This member will contain 0 if the SEND TARGETS operation succeeds and ISDSC_SCSI_REQUEST_FAILED if the operation fails. If the SEND TARGETS operation fails, ScsiStatus will contain the SCSI status of the SCSI command. SCSI status qualifiers are documented in the SCSI Primary Commands specification. For a list of status qualifiers, see ISCSI_STATUS_QUALIFIERS.
ResponseSizeThe size, in bytes, of the buffer at Response.
ResponseA buffer that holds the response data that the target returns. Response to SendTargets in UTF8 characters. NOTE: This field is a variable length array.
You must implement this method.