// iscsiop.h
typedef struct _SendTargets_IN {
ULONGLONG UniqueSessionId;
WCHAR SendTargetsText[223 + 1];
} SendTargets_IN, *PSendTargets_IN;
View the official Windows Driver Kit DDI referenceNo description available.
The SendTargets_IN structure holds the input data for the SendTargets method.
UniqueSessionIdA 64-bit integer that uniquely identifies the session. The LoginToTarget and AddConnectionToSession methods both return this value in their UniqueSessionId parameter.
SendTargetsTextThe authentication key text in the PDU.
You must implement this method.